[][src]Struct ntex_amqp::codec::protocol::Flow

pub struct Flow {
    pub next_incoming_id: Option<u32>,
    pub incoming_window: u32,
    pub next_outgoing_id: u32,
    pub outgoing_window: u32,
    pub handle: Option<u32>,
    pub delivery_count: Option<u32>,
    pub link_credit: Option<u32>,
    pub available: Option<u32>,
    pub drain: bool,
    pub echo: bool,
    pub properties: Option<HashMap<Symbol, Variant, RandomState>>,
}

Fields

next_incoming_id: Option<u32>incoming_window: u32next_outgoing_id: u32outgoing_window: u32handle: Option<u32>delivery_count: Option<u32>link_credit: Option<u32>available: Option<u32>drain: boolecho: boolproperties: Option<HashMap<Symbol, Variant, RandomState>>

Implementations

impl Flow[src]

pub fn next_incoming_id(&self) -> Option<u32>[src]

pub fn incoming_window(&self) -> u32[src]

pub fn next_outgoing_id(&self) -> u32[src]

pub fn outgoing_window(&self) -> u32[src]

pub fn handle(&self) -> Option<u32>[src]

pub fn delivery_count(&self) -> Option<u32>[src]

pub fn available(&self) -> Option<u32>[src]

pub fn drain(&self) -> bool[src]

pub fn echo(&self) -> bool[src]

pub fn properties(&self) -> Option<&HashMap<Symbol, Variant, RandomState>>[src]

Trait Implementations

impl Clone for Flow[src]

impl Debug for Flow[src]

impl Encode for Flow[src]

impl From<Flow> for Frame[src]

impl PartialEq<Flow> for Flow[src]

impl StructuralPartialEq for Flow[src]

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> Decode for T where
    T: DecodeFormatted, 
[src]

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

impl<T> Instrument for T[src]

impl<T> Instrument 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>,