[][src]Struct amqp_codec::protocol::Open

pub struct Open {
    pub container_id: ByteString,
    pub hostname: Option<ByteString>,
    pub max_frame_size: u32,
    pub channel_max: u16,
    pub idle_time_out: Option<Milliseconds>,
    pub outgoing_locales: Option<IetfLanguageTags>,
    pub incoming_locales: Option<IetfLanguageTags>,
    pub offered_capabilities: Option<Symbols>,
    pub desired_capabilities: Option<Symbols>,
    pub properties: Option<Fields>,
}

Fields

container_id: ByteStringhostname: Option<ByteString>max_frame_size: u32channel_max: u16idle_time_out: Option<Milliseconds>outgoing_locales: Option<IetfLanguageTags>incoming_locales: Option<IetfLanguageTags>offered_capabilities: Option<Symbols>desired_capabilities: Option<Symbols>properties: Option<Fields>

Methods

impl Open[src]

Trait Implementations

impl Encode for Open[src]

impl From<Open> for Frame[src]

impl Clone for Open[src]

impl PartialEq<Open> for Open[src]

impl Debug for Open[src]

impl StructuralPartialEq for Open[src]

Auto Trait Implementations

impl Send for Open

impl Sync for Open

impl Unpin for Open

impl UnwindSafe for Open

impl RefUnwindSafe for Open

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