Struct amq_protocol_codegen::AMQPValueArgument[][src]

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

The type of the argument's value

The name of the argument's value

The default value of the argument's value

The domain of the argument's value

Trait Implementations

impl Named for AMQPValueArgument
[src]

Get the raw name

Get the name converted to camel case

Get the name converted to snake case

impl Clone for AMQPValueArgument
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for AMQPValueArgument
[src]

Formats the value using the given formatter. Read more

impl PartialEq for AMQPValueArgument
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations