Enum amq_protocol_types::AMQPValue [] [src]

pub enum AMQPValue {
    Boolean(Boolean),
    ShortShortInt(ShortShortInt),
    ShortShortUInt(ShortShortUInt),
    ShortInt(ShortInt),
    ShortUInt(ShortUInt),
    LongInt(LongInt),
    LongUInt(LongUInt),
    LongLongInt(LongLongInt),
    LongLongUInt(LongLongUInt),
    Float(Float),
    Double(Double),
    DecimalValue(DecimalValue),
    ShortString(ShortString),
    LongString(LongString),
    FieldArray(FieldArray),
    Timestamp(Timestamp),
    FieldTable(FieldTable),
    Void,
}

Variants

Methods

impl AMQPValue
[src]

Trait Implementations

impl Clone for AMQPValue
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for AMQPValue
[src]

Formats the value using the given formatter.

impl PartialEq for AMQPValue
[src]

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

This method tests for !=.

impl From<Value> for AMQPValue
[src]

Performs the conversion.

impl<'a> From<&'a Value> for AMQPValue
[src]

Performs the conversion.