pub enum MapValue {
Show 17 variants
UInt8,
UInt16,
UInt32,
UInt64,
UInt256,
Int8,
Int16,
Int32,
Int64,
Int128,
Int256,
Float32,
Float64,
Decimal(DecimalPrecision, DecimalScale),
String,
FixedString(FixedStringN),
Array(Box<TypeName>),
}Variants§
UInt8
UInt16
UInt32
UInt64
UInt256
Int8
Int16
Int32
Int64
Int128
Int256
Float32
Float64
Decimal(DecimalPrecision, DecimalScale)
String
FixedString(FixedStringN)
Array(Box<TypeName>)
Trait Implementations§
impl Eq for MapValue
impl StructuralPartialEq for MapValue
Auto Trait Implementations§
impl Freeze for MapValue
impl RefUnwindSafe for MapValue
impl Send for MapValue
impl Sync for MapValue
impl Unpin for MapValue
impl UnwindSafe for MapValue
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