pub enum Format {
Show 37 variants
PositiveFixInt(u8),
FixMap(u8),
FixArray(u8),
FixStr(u8),
Nil,
NeverUsed,
False,
True,
Bin8,
Bin16,
Bin32,
Ext8,
Ext16,
Ext32,
Float32,
Float64,
Uint8,
Uint16,
Uint32,
Uint64,
Int8,
Int16,
Int32,
Int64,
FixExt1,
FixExt2,
FixExt4,
FixExt8,
FixExt16,
Str8,
Str16,
Str32,
Array16,
Array32,
Map16,
Map32,
NegativeFixInt(i8),
}
Variants§
PositiveFixInt(u8)
FixMap(u8)
FixArray(u8)
FixStr(u8)
Nil
NeverUsed
False
True
Bin8
Bin16
Bin32
Ext8
Ext16
Ext32
Float32
Float64
Uint8
Uint16
Uint32
Uint64
Int8
Int16
Int32
Int64
FixExt1
FixExt2
FixExt4
FixExt8
FixExt16
Str8
Str16
Str32
Array16
Array32
Map16
Map32
NegativeFixInt(i8)
Implementations§
Trait Implementations§
Source§impl IntoIterator for Format
impl IntoIterator for Format
Source§impl Ord for Format
impl Ord for Format
Source§impl PartialOrd for Format
impl PartialOrd for Format
impl Eq for Format
impl StructuralPartialEq for Format
Auto Trait Implementations§
impl Freeze for Format
impl RefUnwindSafe for Format
impl Send for Format
impl Sync for Format
impl Unpin for Format
impl UnwindSafe for Format
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