pub enum EventType {
MessagePlanetToOrchestrator,
MessageOrchestratorToPlanet,
MessagePlanetToExplorer,
MessageOrchestratorToExplorer,
MessageExplorerToPlanet,
MessageExplorerToOrchestrator,
InternalPlanetAction,
InternalExplorerAction,
InternalOrchestratorAction,
UserToPlanet,
UserToExplorer,
UserToOrchestrator,
}Expand description
High-level event categories.
Variants§
MessagePlanetToOrchestrator
Message between planet and orchestrator
MessageOrchestratorToPlanet
Message between orchestrator and planet
MessagePlanetToExplorer
Message between planet and explorer
MessageOrchestratorToExplorer
Message between orchestrator and explorer
MessageExplorerToPlanet
Message between explorer and planet
MessageExplorerToOrchestrator
Message between explorer and orchestrator
InternalPlanetAction
Internal planet action
InternalExplorerAction
Internal explorer action
InternalOrchestratorAction
Internal orchestrator action
UserToPlanet
User command to planet
UserToExplorer
User command to explorer
UserToOrchestrator
User command to orchestrator
Trait Implementations§
impl Eq for EventType
impl StructuralPartialEq for EventType
Auto Trait Implementations§
impl Freeze for EventType
impl RefUnwindSafe for EventType
impl Send for EventType
impl Sync for EventType
impl Unpin for EventType
impl UnwindSafe for EventType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more