Enum message_io::node::StoredNodeEvent [−][src]
pub enum StoredNodeEvent<S> {
Network(StoredNetEvent),
Signal(S),
}Expand description
Variants
Network(StoredNetEvent)The StoredNodeEvent is an event that comes from the network.
See NetEvent to know about the different network events.
Tuple Fields of Network
The StoredNodeEvent is a signal.
A signal is an event produced by the own node to itself.
You can send signals with timers or priority.
See EventSender to know about how to send signals.
Implementations
Assume the event is a StoredNodeEvent::Network, panics if not.
Assume the event is a StoredNodeEvent::Signal, panics if not.
Trait Implementations
Auto Trait Implementations
impl<S> RefUnwindSafe for StoredNodeEvent<S> where
S: RefUnwindSafe,
impl<S> Send for StoredNodeEvent<S> where
S: Send,
impl<S> Sync for StoredNodeEvent<S> where
S: Sync,
impl<S> Unpin for StoredNodeEvent<S> where
S: Unpin,
impl<S> UnwindSafe for StoredNodeEvent<S> where
S: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more