pub struct ChildStopped<A: Address> {
pub nonce: A::Nonce,
pub outcome: Result<Exit<A>, Crash>,
pub at: Instant,
}Fields§
§nonce: A::Nonce§outcome: Result<Exit<A>, Crash>§at: InstantImplementations§
Trait Implementations§
Source§impl<A: Clone + Address> Clone for ChildStopped<A>
impl<A: Clone + Address> Clone for ChildStopped<A>
Source§fn clone(&self) -> ChildStopped<A>
fn clone(&self) -> ChildStopped<A>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<E: UserEvent> EventInput<ChildStopped<<E as UserEvent>::Addr>> for ProxyEvent<E>
impl<E: UserEvent> EventInput<ChildStopped<<E as UserEvent>::Addr>> for ProxyEvent<E>
fn inject(event: ChildStopped<E::Addr>) -> Self
Source§impl<E> EventInput<ChildStopped<<E as UserEvent>::Addr>> for ShutdownProtocol<E>
impl<E> EventInput<ChildStopped<<E as UserEvent>::Addr>> for ShutdownProtocol<E>
fn inject(event: ChildStopped<E::Addr>) -> Self
Source§impl<E: UserEvent> EventInput<ChildStopped<<E as UserEvent>::Addr>> for SupervisionEvent<E>
impl<E: UserEvent> EventInput<ChildStopped<<E as UserEvent>::Addr>> for SupervisionEvent<E>
fn inject(event: ChildStopped<E::Addr>) -> Self
Source§impl<E> EventInput<ChildStopped<<E as UserEvent>::Addr>> for TimedEvent<E>
impl<E> EventInput<ChildStopped<<E as UserEvent>::Addr>> for TimedEvent<E>
fn inject(event: ChildStopped<E::Addr>) -> Self
Source§impl<E> EventInput<ChildStopped<<E as UserEvent>::Addr>> for WatchEvent<E>
impl<E> EventInput<ChildStopped<<E as UserEvent>::Addr>> for WatchEvent<E>
fn inject(event: ChildStopped<E::Addr>) -> Self
Source§impl<A: Address> From<ChildStopped<A>> for ReportWorkerStopped<A>
impl<A: Address> From<ChildStopped<A>> for ReportWorkerStopped<A>
Source§fn from(stopped: ChildStopped<A>) -> Self
fn from(stopped: ChildStopped<A>) -> Self
Converts to this type from the input type.
impl<A: Eq + Address> Eq for ChildStopped<A>
impl<A: Address> StructuralPartialEq for ChildStopped<A>
Auto Trait Implementations§
impl<A> Freeze for ChildStopped<A>
impl<A> RefUnwindSafe for ChildStopped<A>
impl<A> Send for ChildStopped<A>
impl<A> Sync for ChildStopped<A>
impl<A> Unpin for ChildStopped<A>
impl<A> UnsafeUnpin for ChildStopped<A>
impl<A> UnwindSafe for ChildStopped<A>
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