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

pub struct Attach {
    pub name: ByteString,
    pub handle: u32,
    pub role: Role,
    pub snd_settle_mode: SenderSettleMode,
    pub rcv_settle_mode: ReceiverSettleMode,
    pub source: Option<Source>,
    pub target: Option<Target>,
    pub unsettled: Option<HashMap<Variant, Variant, BuildHasherDefault<FxHasher>>>,
    pub incomplete_unsettled: bool,
    pub initial_delivery_count: Option<u32>,
    pub max_message_size: Option<u64>,
    pub offered_capabilities: Option<Multiple<Symbol>>,
    pub desired_capabilities: Option<Multiple<Symbol>>,
    pub properties: Option<HashMap<Symbol, Variant, BuildHasherDefault<FxHasher>>>,
}

Fields

name: ByteStringhandle: u32role: Rolesnd_settle_mode: SenderSettleModercv_settle_mode: ReceiverSettleModesource: Option<Source>target: Option<Target>unsettled: Option<HashMap<Variant, Variant, BuildHasherDefault<FxHasher>>>incomplete_unsettled: boolinitial_delivery_count: Option<u32>max_message_size: Option<u64>offered_capabilities: Option<Multiple<Symbol>>desired_capabilities: Option<Multiple<Symbol>>properties: Option<HashMap<Symbol, Variant, BuildHasherDefault<FxHasher>>>

Methods

impl Attach[src]

Trait Implementations

impl Clone for Attach[src]

impl Debug for Attach[src]

impl Encode for Attach[src]

impl From<Attach> for Frame[src]

impl PartialEq<Attach> for Attach[src]

impl StructuralPartialEq for Attach[src]

Auto Trait Implementations

impl RefUnwindSafe for Attach

impl Send for Attach

impl Sync for Attach

impl Unpin for Attach

impl UnwindSafe for Attach

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> Encode for T where
    T: FixedEncode + ArrayEncode, 
[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>,