Trait InitDone

Source
pub trait InitDone<Sys>: Call<Sys, InitAck, Outcome = ()>
where Sys: System + Default,
{ // Provided method fn init_done(&mut self, address: Address) -> impl Future<Output = ()> + Send { ... } }

Provided 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.

Implementors§

Source§

impl<Sys, T> InitDone<Sys> for T
where T: Call<Sys, InitAck, Outcome = ()>, Sys: System + Default,