pub enum MetadataAttributeRepresentation {
Enumeration(MetadataAttributeEnumeration),
Format(MetadataAttributeFormat),
}
Expand description
The possible local representations of a metadata attribute
Variants§
Enumeration(MetadataAttributeEnumeration)
Format(MetadataAttributeFormat)
Trait Implementations§
Source§impl Clone for MetadataAttributeRepresentation
impl Clone for MetadataAttributeRepresentation
Source§fn clone(&self) -> MetadataAttributeRepresentation
fn clone(&self) -> MetadataAttributeRepresentation
Returns a copy 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<'de> Deserialize<'de> for MetadataAttributeRepresentation
impl<'de> Deserialize<'de> for MetadataAttributeRepresentation
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
Source§impl PartialEq for MetadataAttributeRepresentation
impl PartialEq for MetadataAttributeRepresentation
Source§fn eq(&self, other: &MetadataAttributeRepresentation) -> bool
fn eq(&self, other: &MetadataAttributeRepresentation) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Eq for MetadataAttributeRepresentation
impl StructuralPartialEq for MetadataAttributeRepresentation
Auto Trait Implementations§
impl Freeze for MetadataAttributeRepresentation
impl RefUnwindSafe for MetadataAttributeRepresentation
impl Send for MetadataAttributeRepresentation
impl Sync for MetadataAttributeRepresentation
impl Unpin for MetadataAttributeRepresentation
impl UnwindSafe for MetadataAttributeRepresentation
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