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§
fn tell<M>( &mut self, to: Address, msg: M, ) -> impl Future<Output = Result<(), ErrorOf<TellErrorKind>>> + 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.