Skip to main content

GetActorRef

Trait GetActorRef 

Source
pub trait GetActorRef {
    // Required method
    fn get_ref(&self, ctx: &ActorHandlerContext) -> ActorRef<Self>
       where Self: Actor + Sized + Send + Sync;
}

Required Methods§

Source

fn get_ref(&self, ctx: &ActorHandlerContext) -> ActorRef<Self>
where Self: Actor + Sized + Send + Sync,

Implementors§

Source§

impl<A: Actor> GetActorRef for A