Struct riker::protocol::DeadLetter[][src]

pub struct DeadLetter<Msg: Message> {
    pub msg: ActorMsg<Msg>,
    pub sender: String,
    pub recipient: String,
}

Fields

Trait Implementations

impl<Msg: Clone + Message> Clone for DeadLetter<Msg>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<Msg: Debug + Message> Debug for DeadLetter<Msg>
[src]

Formats the value using the given formatter. Read more

impl<Msg: Message> Into<ActorMsg<Msg>> for DeadLetter<Msg>
[src]

Performs the conversion.

Auto Trait Implementations

impl<Msg> Send for DeadLetter<Msg>

impl<Msg> Sync for DeadLetter<Msg> where
    Msg: Sync