pub enum ReceiveTimeoutEvent<E> {
Inner(E),
Elapsed(TimerElapsed),
}Variants§
Inner(E)
Elapsed(TimerElapsed)
Trait Implementations§
Source§impl<E: ChildEvent<A>, A: Address> ChildEvent<A> for ReceiveTimeoutEvent<E>
impl<E: ChildEvent<A>, A: Address> ChildEvent<A> for ReceiveTimeoutEvent<E>
fn child_stopped(event: ChildStopped<A>) -> Option<Self>
Source§impl<E: Clone> Clone for ReceiveTimeoutEvent<E>
impl<E: Clone> Clone for ReceiveTimeoutEvent<E>
Source§fn clone(&self) -> ReceiveTimeoutEvent<E>
fn clone(&self) -> ReceiveTimeoutEvent<E>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<E: Debug> Debug for ReceiveTimeoutEvent<E>
impl<E: Debug> Debug for ReceiveTimeoutEvent<E>
impl<E: Eq> Eq for ReceiveTimeoutEvent<E>
Source§impl<E: PartialEq> PartialEq for ReceiveTimeoutEvent<E>
impl<E: PartialEq> PartialEq for ReceiveTimeoutEvent<E>
Source§impl<E: PeerEvent<A>, A: Address> PeerEvent<A> for ReceiveTimeoutEvent<E>
impl<E: PeerEvent<A>, A: Address> PeerEvent<A> for ReceiveTimeoutEvent<E>
fn peer_stopped(event: PeerStopped<A>) -> Option<Self>
Source§impl<E: ShutdownEvent> ShutdownEvent for ReceiveTimeoutEvent<E>
impl<E: ShutdownEvent> ShutdownEvent for ReceiveTimeoutEvent<E>
fn shutdown_requested(event: ShutdownRequested) -> Option<Self>
impl<E: PartialEq> StructuralPartialEq for ReceiveTimeoutEvent<E>
Source§impl<E> TimeEvent for ReceiveTimeoutEvent<E>
impl<E> TimeEvent for ReceiveTimeoutEvent<E>
fn time_reached(event: TimerElapsed) -> Option<Self>
Source§impl<E: UserEvent> UserEvent for ReceiveTimeoutEvent<E>
impl<E: UserEvent> UserEvent for ReceiveTimeoutEvent<E>
Source§impl<E: WorkerEvent<A>, A: Address> WorkerEvent<A> for ReceiveTimeoutEvent<E>
impl<E: WorkerEvent<A>, A: Address> WorkerEvent<A> for ReceiveTimeoutEvent<E>
fn worker_stopped(event: WorkerStopped<A>) -> Option<Self>
Auto Trait Implementations§
impl<E> Freeze for ReceiveTimeoutEvent<E>where
E: Freeze,
impl<E> RefUnwindSafe for ReceiveTimeoutEvent<E>where
E: RefUnwindSafe,
impl<E> Send for ReceiveTimeoutEvent<E>where
E: Send,
impl<E> Sync for ReceiveTimeoutEvent<E>where
E: Sync,
impl<E> Unpin for ReceiveTimeoutEvent<E>where
E: Unpin,
impl<E> UnsafeUnpin for ReceiveTimeoutEvent<E>where
E: UnsafeUnpin,
impl<E> UnwindSafe for ReceiveTimeoutEvent<E>where
E: UnwindSafe,
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