[][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]

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

Actor name.

Unique among siblings.

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

Actor path.

e.g. `/user/actor_a/actor_b

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

Parent reference.

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

Iterator over children references.

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

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

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

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