mm1_core::context

Trait Tell

Source
pub trait Tell: Call<Address, AnyMessage, Outcome = Result<(), ErrorOf<TellErrorKind>>> {
    // Provided method
    fn tell<M>(
        &mut self,
        to: Address,
        msg: M,
    ) -> impl Future<Output = Result<(), ErrorOf<TellErrorKind>>> + Send
       where M: Any + Send + 'static { ... }
}

Provided Methods§

Source

fn tell<M>( &mut self, to: Address, msg: M, ) -> impl Future<Output = Result<(), ErrorOf<TellErrorKind>>> + Send
where M: Any + Send + 'static,

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<T> Tell for T