pub enum MetadataFormat {
None,
PlainText(String),
Json(String),
}Variants§
Trait Implementations§
Source§impl Clone for MetadataFormat
impl Clone for MetadataFormat
Source§fn clone(&self) -> MetadataFormat
fn clone(&self) -> MetadataFormat
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 MetadataFormat
impl Debug for MetadataFormat
Source§impl PartialEq for MetadataFormat
impl PartialEq for MetadataFormat
impl Eq for MetadataFormat
impl StructuralPartialEq for MetadataFormat
Auto Trait Implementations§
impl Freeze for MetadataFormat
impl RefUnwindSafe for MetadataFormat
impl Send for MetadataFormat
impl Sync for MetadataFormat
impl Unpin for MetadataFormat
impl UnwindSafe for MetadataFormat
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