pub trait ContextInitAckExt {
    fn init_ack<E>(&mut self, result: Result<ActorID, E>)
    where
        E: Into<Exit>
; fn init_ack_ok(&mut self, actor_id_opt: Option<ActorID>); fn init_ack_err<E>(&mut self, err: E)
    where
        E: Into<Exit>
, { ... } }

Required Methods

Provided Methods

Implementations on Foreign Types

Implementors