[][src]Trait riker::actor::ActorSelectionFactory

pub trait ActorSelectionFactory {
    type Msg: Message;
    fn select(
        &self,
        path: &str
    ) -> Result<ActorSelection<Self::Msg>, InvalidPath>; }

Associated Types

type Msg: Message

Loading content...

Required methods

fn select(&self, path: &str) -> Result<ActorSelection<Self::Msg>, InvalidPath>

Loading content...

Implementors

impl<Msg> ActorSelectionFactory for Context<Msg> where
    Msg: Message
[src]

type Msg = Msg

impl<Msg> ActorSelectionFactory for ActorSystem<Msg> where
    Msg: Message
[src]

type Msg = Msg

Loading content...