[][src]Struct amqp_codec::protocol::Flow

pub struct Flow {
    pub next_incoming_id: Option<TransferNumber>,
    pub incoming_window: u32,
    pub next_outgoing_id: TransferNumber,
    pub outgoing_window: u32,
    pub handle: Option<Handle>,
    pub delivery_count: Option<SequenceNo>,
    pub link_credit: Option<u32>,
    pub available: Option<u32>,
    pub drain: bool,
    pub echo: bool,
    pub properties: Option<Fields>,
}

Fields

next_incoming_id: Option<TransferNumber>incoming_window: u32next_outgoing_id: TransferNumberoutgoing_window: u32handle: Option<Handle>delivery_count: Option<SequenceNo>link_credit: Option<u32>available: Option<u32>drain: boolecho: boolproperties: Option<Fields>

Methods

impl Flow[src]

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

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

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

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

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

pub fn delivery_count(&self) -> Option<SequenceNo>[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<&Fields>[src]

Trait Implementations

impl Encode for Flow[src]

impl From<Flow> for Frame[src]

impl Clone for Flow[src]

impl PartialEq<Flow> for Flow[src]

impl Debug for Flow[src]

impl StructuralPartialEq for Flow[src]

Auto Trait Implementations

impl Send for Flow

impl Sync for Flow

impl Unpin for Flow

impl UnwindSafe for Flow

impl RefUnwindSafe for Flow

Blanket Implementations

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 = !

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> Borrow<T> for T where
    T: ?Sized
[src]

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