pub enum FieldArgument {
Show 18 variants
Boolean(bool),
SignedOctet(i8),
UnsignedOctet(u8),
SignedShort(i16),
UnsignedShort(u16),
SignedLong(i32),
UnsignedLong(u32),
SignedLongLong(i64),
UnsignedLongLong(u64),
Float(f32),
Double(f64),
Decimal(i64),
ShortString(AmqpString),
LongString(AmqpString),
Timestamp(u64),
NestedTable(HashMap<AmqpString, FieldArgument>),
Void,
ByteArray(Vec<u8>),
}Variants§
Boolean(bool)
SignedOctet(i8)
UnsignedOctet(u8)
SignedShort(i16)
UnsignedShort(u16)
SignedLong(i32)
UnsignedLong(u32)
SignedLongLong(i64)
UnsignedLongLong(u64)
Float(f32)
Double(f64)
Decimal(i64)
ShortString(AmqpString)
LongString(AmqpString)
Timestamp(u64)
NestedTable(HashMap<AmqpString, FieldArgument>)
Void
ByteArray(Vec<u8>)
Trait Implementations§
Source§impl Clone for FieldArgument
impl Clone for FieldArgument
Source§fn clone(&self) -> FieldArgument
fn clone(&self) -> FieldArgument
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FieldArgument
impl Debug for FieldArgument
Source§impl PartialEq for FieldArgument
impl PartialEq for FieldArgument
Source§fn eq(&self, other: &FieldArgument) -> bool
fn eq(&self, other: &FieldArgument) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FieldArgument
Auto Trait Implementations§
impl !Freeze for FieldArgument
impl RefUnwindSafe for FieldArgument
impl Send for FieldArgument
impl Sync for FieldArgument
impl Unpin for FieldArgument
impl UnsafeUnpin for FieldArgument
impl UnwindSafe for FieldArgument
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more