Struct amq_protocol_codegen::AMQPMethod[][src]

pub struct AMQPMethod {
    pub id: ShortUInt,
    pub arguments: Vec<AMQPArgument>,
    pub name: ShortString,
    pub synchronous: Boolean,
}

A method as defined in the AMQP specification

Fields

The id of the method

The arguments of the method

The name of the method

Whether this method is synchronous or not

Trait Implementations

impl Named for AMQPMethod
[src]

Get the raw name

Get the name converted to camel case

Get the name converted to snake case

impl Clone for AMQPMethod
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for AMQPMethod
[src]

Formats the value using the given formatter. Read more

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

impl Send for AMQPMethod

impl Sync for AMQPMethod