[][src]Struct amqp_codec::protocol::Attach

pub struct Attach {
    pub name: ByteString,
    pub handle: Handle,
    pub role: Role,
    pub snd_settle_mode: SenderSettleMode,
    pub rcv_settle_mode: ReceiverSettleMode,
    pub source: Option<Source>,
    pub target: Option<Target>,
    pub unsettled: Option<Map>,
    pub incomplete_unsettled: bool,
    pub initial_delivery_count: Option<SequenceNo>,
    pub max_message_size: Option<u64>,
    pub offered_capabilities: Option<Symbols>,
    pub desired_capabilities: Option<Symbols>,
    pub properties: Option<Fields>,
}

Fields

name: ByteStringhandle: Handlerole: Rolesnd_settle_mode: SenderSettleModercv_settle_mode: ReceiverSettleModesource: Option<Source>target: Option<Target>unsettled: Option<Map>incomplete_unsettled: boolinitial_delivery_count: Option<SequenceNo>max_message_size: Option<u64>offered_capabilities: Option<Symbols>desired_capabilities: Option<Symbols>properties: Option<Fields>

Methods

impl Attach[src]

pub fn name(&self) -> &ByteString[src]

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

pub fn role(&self) -> Role[src]

pub fn snd_settle_mode(&self) -> SenderSettleMode[src]

pub fn rcv_settle_mode(&self) -> ReceiverSettleMode[src]

pub fn source(&self) -> Option<&Source>[src]

pub fn target(&self) -> Option<&Target>[src]

pub fn unsettled(&self) -> Option<&Map>[src]

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

pub fn initial_delivery_count(&self) -> Option<SequenceNo>[src]

pub fn max_message_size(&self) -> Option<u64>[src]

pub fn offered_capabilities(&self) -> Option<&Symbols>[src]

pub fn desired_capabilities(&self) -> Option<&Symbols>[src]

pub fn properties(&self) -> Option<&Fields>[src]

Trait Implementations

impl Encode for Attach[src]

impl From<Attach> for Frame[src]

impl Clone for Attach[src]

impl PartialEq<Attach> for Attach[src]

impl Debug for Attach[src]

impl StructuralPartialEq for Attach[src]

Auto Trait Implementations

impl Send for Attach

impl Sync for Attach

impl Unpin for Attach

impl UnwindSafe for Attach

impl RefUnwindSafe for Attach

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