[][src]Type Definition riker::actor::BoxedTell

type BoxedTell<T> = Box<dyn Tell<T> + Send + 'static>;

Trait Implementations

impl<T> ActorReference for BoxedTell<T> where
    T: Message
[src]

fn name(&self) -> &str[src]

Actor name.

Unique among siblings.

fn path(&self) -> &ActorPath[src]

Actor path.

e.g. `/user/actor_a/actor_b

fn parent(&self) -> BasicActorRef[src]

Parent reference.

fn children<'a>(&'a self) -> Box<dyn Iterator<Item = BasicActorRef> + 'a>[src]

Iterator over children references.

impl<T: 'static> Clone for BoxedTell<T>[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<T> PartialEq<Box<dyn Tell<T> + 'static + Send>> for BoxedTell<T>[src]

#[must_use] fn ne(&self, other: &Rhs) -> bool1.0.0[src]

This method tests for !=.

impl<T> Debug for BoxedTell<T>[src]

impl<T> Display for BoxedTell<T>[src]