[][src]Enum laminar::OrderingGuarantee

pub enum OrderingGuarantee {
    None,
    Sequenced(Option<u8>),
    Ordered(Option<u8>),
}

Enum to specify how a packet should be arranged.

Variants

None

No arranging will be done.

Sequenced(Option<u8>)

Packets will be arranged in sequence.

Ordered(Option<u8>)

Packets will be arranged in order.

Trait Implementations

impl Eq for OrderingGuarantee[src]

impl Default for OrderingGuarantee[src]

impl Clone for OrderingGuarantee[src]

impl PartialOrd<OrderingGuarantee> for OrderingGuarantee[src]

impl PartialEq<OrderingGuarantee> for OrderingGuarantee[src]

impl Copy for OrderingGuarantee[src]

impl Debug for OrderingGuarantee[src]

impl TryFrom<u8> for OrderingGuarantee[src]

type Error = ErrorKind

The type returned in the event of a conversion error.

fn try_from(value: u8) -> Result<Self, Self::Error>[src]

Get OrderingGuarantee enum instance from integer value.

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

impl<T> From<T> for 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.

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

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

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

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,