pub enum MapValue {
UInt32(u32),
UInt64(u64),
Bool(bool),
Int32(i32),
Int64(i64),
String(String),
ByteArray(Vec<u8>),
}
Variants§
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