Struct brb::deterministic_brb::Msg[][src]

pub struct Msg<A, DataTypeOp> { /* fields omitted */ }

A BRB message consisting of an operation to be performed by the DataType we are securing along with a Generation and a Dot indicating the context when it was created.

Trait Implementations

impl<A: Clone, DataTypeOp: Clone> Clone for Msg<A, DataTypeOp>[src]

impl<A: Debug, DataTypeOp: Debug> Debug for Msg<A, DataTypeOp>[src]

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

impl<A: Eq, DataTypeOp: Eq> Eq for Msg<A, DataTypeOp>[src]

impl<A: Hash, DataTypeOp: Hash> Hash for Msg<A, DataTypeOp>[src]

impl<A: PartialEq, DataTypeOp: PartialEq> PartialEq<Msg<A, DataTypeOp>> for Msg<A, DataTypeOp>[src]

impl<A, DataTypeOp> Serialize for Msg<A, DataTypeOp> where
    A: Serialize,
    DataTypeOp: Serialize
[src]

impl<A, DataTypeOp> StructuralEq for Msg<A, DataTypeOp>[src]

impl<A, DataTypeOp> StructuralPartialEq for Msg<A, DataTypeOp>[src]

Auto Trait Implementations

impl<A, DataTypeOp> RefUnwindSafe for Msg<A, DataTypeOp> where
    A: RefUnwindSafe,
    DataTypeOp: RefUnwindSafe

impl<A, DataTypeOp> Send for Msg<A, DataTypeOp> where
    A: Send,
    DataTypeOp: Send

impl<A, DataTypeOp> Sync for Msg<A, DataTypeOp> where
    A: Sync,
    DataTypeOp: Sync

impl<A, DataTypeOp> Unpin for Msg<A, DataTypeOp> where
    A: Unpin,
    DataTypeOp: Unpin

impl<A, DataTypeOp> UnwindSafe for Msg<A, DataTypeOp> where
    A: UnwindSafe,
    DataTypeOp: UnwindSafe

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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>,