pub struct MetadataField {
pub category: MetadataCategory,
pub key: String,
pub value: String,
}Expand description
A single extracted metadata field.
Fields§
§category: MetadataCategory§key: String§value: StringTrait Implementations§
Source§impl Clone for MetadataField
impl Clone for MetadataField
Source§fn clone(&self) -> MetadataField
fn clone(&self) -> MetadataField
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 MetadataField
impl Debug for MetadataField
Source§impl<'de> Deserialize<'de> for MetadataField
impl<'de> Deserialize<'de> for MetadataField
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for MetadataField
impl RefUnwindSafe for MetadataField
impl Send for MetadataField
impl Sync for MetadataField
impl Unpin for MetadataField
impl UnsafeUnpin for MetadataField
impl UnwindSafe for MetadataField
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