Skip to main content

ChildEvent

Trait ChildEvent 

Source
pub trait ChildEvent<A: Address>: Sized {
    // Required method
    fn child_stopped(event: ChildStopped<A>) -> Option<Self>;
}

Required Methods§

Source

fn child_stopped(event: ChildStopped<A>) -> Option<Self>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<A: Address, M> ChildEvent<A> for User<A, M>

Source§

impl<E, A: Address> ChildEvent<A> for SupervisionEvent<E, A>

Source§

impl<E: ChildEvent<A>, A: Address> ChildEvent<A> for AtEvent<E>

Source§

impl<E: ChildEvent<A>, A: Address> ChildEvent<A> for WatchEvent<E, A>