Enum lapin_async::types::AMQPType [−][src]
pub enum AMQPType { Boolean, ShortShortInt, ShortShortUInt, ShortInt, ShortUInt, LongInt, LongUInt, LongLongInt, LongLongUInt, Float, Double, DecimalValue, ShortString, LongString, FieldArray, Timestamp, FieldTable, ByteArray, Void, }
Enumeration referencing all the available AMQP types
Variants
Boolean
A bool
ShortShortInt
An i8
ShortShortUInt
A u8
ShortInt
An i16
ShortUInt
A u16
LongInt
An i32
LongUInt
A u32
LongLongInt
An i64
LongLongUInt
A u64
Float
An f32
Double
An f64
DecimalValue
A decimal value represented by a scale and a value
ShortString
Deprecated, a String
LongString
A String
FieldArray
An array of AMQPValue
Timestamp
A timestamp (u32)
FieldTable
A Map<String, AMQPValue>
ByteArray
An array of bytes, RabbitMQ specific
Void
No value
Methods
impl AMQPType
[src]
impl AMQPType
pub fn from_id(id: char) -> Option<AMQPType>
[src]
pub fn from_id(id: char) -> Option<AMQPType>
Get the AMQPType corresponding to the given id. We don't strictly follow the spec here but rather the RabbitMQ implementation 's' means ShortInt (like 'U') instead of ShortString 'l' and 'L' both mean LongLongInt (no LongLongUInt)
pub fn get_id(&self) -> char
[src]
pub fn get_id(&self) -> char
Get the id from an AMQPType We don't strictly follow the spec here but rather the RabbitMQ implementation ShortString doesn't have an id, we return '_' instead ShortInt is supposed to be 'U' but we use 's' LongLongUInt is supposed to be 'L' but we return 'l' as LongLongInt
Trait Implementations
impl Display for AMQPType
[src]
impl Display for AMQPType
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter. Read more
impl<'de> Deserialize<'de> for AMQPType
[src]
impl<'de> Deserialize<'de> for AMQPType
fn deserialize<__D>(
__deserializer: __D
) -> Result<AMQPType, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
[src]
fn deserialize<__D>(
__deserializer: __D
) -> Result<AMQPType, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Clone for AMQPType
[src]
impl Clone for AMQPType
fn clone(&self) -> AMQPType
[src]
fn clone(&self) -> AMQPType
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl Serialize for AMQPType
[src]
impl Serialize for AMQPType
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
[src]
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Debug for AMQPType
[src]
impl Debug for AMQPType
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter. Read more
impl PartialEq<AMQPType> for AMQPType
[src]
impl PartialEq<AMQPType> for AMQPType