pub trait ContextInitAckExt {
    // Required methods
    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>);

    // Provided method
    fn init_ack_err<E>(&mut self, err: E)
       where E: Into<Exit> { ... }
}

Required Methods§

source

fn init_ack<E>(&mut self, result: Result<ActorID, E>)where E: Into<Exit>,

source

fn init_ack_ok(&mut self, actor_id_opt: Option<ActorID>)

Provided Methods§

source

fn init_ack_err<E>(&mut self, err: E)where E: Into<Exit>,

Implementations on Foreign Types§

source§

impl<M> ContextInitAckExt for Context<M>

source§

fn init_ack<E>(&mut self, result: Result<ActorID, E>)where E: Into<Exit>,

source§

fn init_ack_ok(&mut self, actor_id_opt: Option<ActorID>)

Implementors§