InitDone

Trait InitDone 

Source
pub trait InitDone {
    // Required method
    fn init_done(&mut self, address: Address) -> impl Future<Output = ()> + Send;
}
Expand description

Report the completion of the init-phase.

Required Methods§

Source

fn init_done(&mut self, address: Address) -> impl Future<Output = ()> + Send

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl InitDone for ActorContext

Source§

fn init_done(&mut self, address: Address) -> impl Future<Output = ()> + Send

Implementors§