Struct amq_protocol_codegen::AMQPProperty[][src]

pub struct AMQPProperty {
    pub amqp_type: AMQPType,
    pub name: ShortString,
}

A property as defined in the AMQP specification

Fields

The type of the property

The name of the property

Trait Implementations

impl Named for AMQPProperty
[src]

Get the raw name

Get the name converted to camel case

Get the name converted to snake case

impl Clone for AMQPProperty
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for AMQPProperty
[src]

Formats the value using the given formatter. Read more

impl PartialEq for AMQPProperty
[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