[][src]Struct riker::kernel::ActorDock

pub struct ActorDock<Msg: Message> {
    pub actor: Option<BoxActor<Msg>>,
    pub cell: ActorCell<Msg>,
    pub actor_ref: ActorRef<Msg>,
    pub mailbox_sender: MailboxSender<Msg>,
    pub mailbox: Mailbox<Msg>,
    pub props: BoxActorProd<Msg>,
}

Fields

actor: Option<BoxActor<Msg>>cell: ActorCell<Msg>actor_ref: ActorRef<Msg>mailbox_sender: MailboxSender<Msg>mailbox: Mailbox<Msg>props: BoxActorProd<Msg>

Auto Trait Implementations

impl<Msg> Send for ActorDock<Msg>

impl<Msg> !Sync for ActorDock<Msg>

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]