pub enum AMQPFieldValue {
Bool(bool),
LongString(String),
EmptyFieldTable,
FieldTable(Box<FieldTable>),
}Variants§
Trait Implementations§
Source§impl Clone for AMQPFieldValue
impl Clone for AMQPFieldValue
Source§fn clone(&self) -> AMQPFieldValue
fn clone(&self) -> AMQPFieldValue
Returns a duplicate of the value. Read more
1.0.0 · 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 AMQPFieldValue
impl Debug for AMQPFieldValue
Source§impl PartialEq for AMQPFieldValue
impl PartialEq for AMQPFieldValue
impl StructuralPartialEq for AMQPFieldValue
Auto Trait Implementations§
impl Freeze for AMQPFieldValue
impl RefUnwindSafe for AMQPFieldValue
impl Send for AMQPFieldValue
impl Sync for AMQPFieldValue
impl Unpin for AMQPFieldValue
impl UnwindSafe for AMQPFieldValue
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