pub trait WithHandle<Act>{
// Required method
fn with_handle(
self,
actor: &mut Act,
) -> impl Future<Output = impl Into<ActorCommand<Act::ShutDown>>> + Send;
}Required Methods§
fn with_handle( self, actor: &mut Act, ) -> impl Future<Output = impl Into<ActorCommand<Act::ShutDown>>> + 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.