[][src]Struct amq_protocol_codegen::AMQPValueArgument

pub struct AMQPValueArgument {
    pub amqp_type: AMQPType,
    pub name: ShortString,
    pub default_value: Option<AMQPValue>,
    pub domain: Option<ShortString>,
}

An argument holding a value as defined in the AMQP specification

Fields

amqp_type: AMQPType

The type of the argument's value

name: ShortString

The name of the argument's value

default_value: Option<AMQPValue>

The default value of the argument's value

domain: Option<ShortString>

The domain of the argument's value

Trait Implementations

impl Named for AMQPValueArgument
[src]

impl PartialEq<AMQPValueArgument> for AMQPValueArgument
[src]

impl Clone for AMQPValueArgument
[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for AMQPValueArgument
[src]

impl Serialize for AMQPValueArgument
[src]

impl<'de> Deserialize<'de> for AMQPValueArgument
[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]