[][src]Enum stateright::actor::ordered_reliable_link::MsgWrapper

pub enum MsgWrapper<Msg> {
    Deliver(Sequencer, Msg),
    Ack(Sequencer),
}

An envelope for ORL messages.

Variants

Deliver(Sequencer, Msg)

Trait Implementations

impl<Msg: Clone> Clone for MsgWrapper<Msg>[src]

impl<Msg: Debug> Debug for MsgWrapper<Msg>[src]

impl<'de, Msg> Deserialize<'de> for MsgWrapper<Msg> where
    Msg: Deserialize<'de>, 
[src]

impl<Msg: Eq> Eq for MsgWrapper<Msg>[src]

impl<Msg: Hash> Hash for MsgWrapper<Msg>[src]

impl<Msg: PartialEq> PartialEq<MsgWrapper<Msg>> for MsgWrapper<Msg>[src]

impl<Msg> Serialize for MsgWrapper<Msg> where
    Msg: Serialize
[src]

impl<Msg> StructuralEq for MsgWrapper<Msg>[src]

impl<Msg> StructuralPartialEq for MsgWrapper<Msg>[src]

Auto Trait Implementations

impl<Msg> RefUnwindSafe for MsgWrapper<Msg> where
    Msg: RefUnwindSafe
[src]

impl<Msg> Send for MsgWrapper<Msg> where
    Msg: Send
[src]

impl<Msg> Sync for MsgWrapper<Msg> where
    Msg: Sync
[src]

impl<Msg> Unpin for MsgWrapper<Msg> where
    Msg: Unpin
[src]

impl<Msg> UnwindSafe for MsgWrapper<Msg> where
    Msg: UnwindSafe
[src]

Blanket Implementations

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

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

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

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> 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<V, T> VZip<V> for T where
    V: MultiLane<T>,