Trait MailboxSchedule
riker::kernel
pub trait MailboxSchedule { type Msg: Message; fn uid(&self) -> ActorId; fn set_scheduled(&self, b: bool); }
type Msg: Message
fn uid(&self) -> ActorId
fn set_scheduled(&self, b: bool)
impl<Msg> MailboxSchedule for Mailbox<Msg> where Msg: Message,
type Msg = Msg
impl<Msg> MailboxSchedule for MailboxSender<Msg> where Msg: Message,