Trait ActorSelectionFactory
riker::actor
pub trait ActorSelectionFactory { type Msg: Message; fn select( &self, path: &str ) -> Result<ActorSelection<Self::Msg>, InvalidPath>; }
type Msg: Message
fn select(&self, path: &str) -> Result<ActorSelection<Self::Msg>, InvalidPath>
impl<Msg> ActorSelectionFactory for Context<Msg> where Msg: Message,
type Msg = Msg
fn select(&self, path: &str) -> Result<ActorSelection<Msg>, InvalidPath>
impl<Msg> ActorSelectionFactory for ActorSystem<Msg> where Msg: Message,