[][src]Trait riker::actor::Tell

pub trait Tell<T>: ActorReference + Send + 'static {
    fn tell(&self, msg: T, sender: Option<BasicActorRef>);
fn box_clone(&self) -> BoxedTell<T>; }

Required methods

fn tell(&self, msg: T, sender: Option<BasicActorRef>)

fn box_clone(&self) -> BoxedTell<T>

Loading content...

Implementors

impl<T, M> Tell<T> for ActorRef<M> where
    T: Message + Into<M>,
    M: Message
[src]

Loading content...