[][src]Enum tcb::vv::structs::messages::MiddlewareClient

pub enum MiddlewareClient {
    DELIVER {
        sender_id: usize,
        message: Message,
        version_vector: VersionVector,
    },
    STABLE {
        sender_id: usize,
        message_id: usize,
        version_vector: VersionVector,
    },
    SETUP,
}

Enum that will be sent by the Middleware to the Client.

Variants

DELIVER

Delivered message with its sender id, payload and version vector

Fields of DELIVER

sender_id: usizemessage: Messageversion_vector: VersionVector
STABLE

Stable message with its sender id, message id and version vector

Fields of STABLE

sender_id: usizemessage_id: usizeversion_vector: VersionVector
SETUP

Setup variation

Auto Trait Implementations

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> From<T> for T[src]

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

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.