pub enum MetadataFieldValue {
String(String),
Integer(i64),
Boolean(bool),
}Variants§
Trait Implementations§
Source§impl Clone for MetadataFieldValue
impl Clone for MetadataFieldValue
Source§fn clone(&self) -> MetadataFieldValue
fn clone(&self) -> MetadataFieldValue
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for MetadataFieldValue
impl Debug for MetadataFieldValue
Auto Trait Implementations§
impl Freeze for MetadataFieldValue
impl RefUnwindSafe for MetadataFieldValue
impl Send for MetadataFieldValue
impl Sync for MetadataFieldValue
impl Unpin for MetadataFieldValue
impl UnwindSafe for MetadataFieldValue
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