Enum amq_proto::TableEntry [] [src]

pub enum TableEntry {
    Bool(bool),
    ShortShortInt(i8),
    ShortShortUint(u8),
    ShortInt(i16),
    ShortUint(u16),
    LongInt(i32),
    LongUint(u32),
    LongLongInt(i64),
    LongLongUint(u64),
    Float(f32),
    Double(f64),
    DecimalValue(u8u32),
    LongString(String),
    FieldArray(Vec<TableEntry>),
    Timestamp(u64),
    FieldTable(Table),
    Void,
}

Variants

Trait Implementations

impl Debug for TableEntry
[src]

Formats the value using the given formatter.

impl Clone for TableEntry
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for TableEntry
[src]

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

This method tests for !=.