pub enum DataMap {
UInt(u64),
UIntAllay(Vec<u64>),
Raw(Vec<u8>),
Ascii(String),
None,
}Expand description
Minimal metadata value type used by the compatibility wrapper.
Variants§
Trait Implementations§
impl Eq for DataMap
impl StructuralPartialEq for DataMap
Auto Trait Implementations§
impl Freeze for DataMap
impl RefUnwindSafe for DataMap
impl Send for DataMap
impl Sync for DataMap
impl Unpin for DataMap
impl UnsafeUnpin for DataMap
impl UnwindSafe for DataMap
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