pub enum MapVal {
Float(f32),
Int(i64),
Bool(bool),
Text(String),
Bytes(Vec<u8>),
}Expand description
Supported value types.
Variants§
Implementations§
Trait Implementations§
impl StructuralPartialEq for MapVal
Auto Trait Implementations§
impl Freeze for MapVal
impl RefUnwindSafe for MapVal
impl Send for MapVal
impl Sync for MapVal
impl Unpin for MapVal
impl UnsafeUnpin for MapVal
impl UnwindSafe for MapVal
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