Enum lapin_async::types::AMQPValue []

pub enum AMQPValue {
    Boolean(bool),
    ShortShortInt(i8),
    ShortShortUInt(u8),
    ShortInt(i16),
    ShortUInt(u16),
    LongInt(i32),
    LongUInt(u32),
    LongLongInt(i64),
    Float(f32),
    Double(f64),
    DecimalValue(DecimalValue),
    LongString(String),
    FieldArray(Vec<AMQPValue>),
    Timestamp(u64),
    FieldTable(BTreeMap<String, AMQPValue>),
    ByteArray(Vec<u8>),
    Void,
}

Variants

Methods

impl AMQPValue

Trait Implementations

impl<'de> Deserialize<'de> for AMQPValue

impl<'a> From<&'a Value> for AMQPValue

impl From<Value> for AMQPValue

impl Serialize for AMQPValue

impl PartialEq<AMQPValue> for AMQPValue

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

This method tests for !=.

impl Debug for AMQPValue

Formats the value using the given formatter.

impl Clone for AMQPValue

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more