pub enum MetaValue {
String(String),
SignedInt(i64),
UnsignedInt(u64),
Double(f64),
Boolean(bool),
}
Expand description
The value of a metadata entry associated with a ValueList. Metadata can be added using ValueListBuilder::metadata method.
Variants§
Trait Implementations§
impl StructuralPartialEq for MetaValue
Auto Trait Implementations§
impl Freeze for MetaValue
impl RefUnwindSafe for MetaValue
impl Send for MetaValue
impl Sync for MetaValue
impl Unpin for MetaValue
impl UnwindSafe for MetaValue
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