pub struct MetadataTaxonomy {
pub id: String,
pub key: Option<String>,
pub display_name: String,
pub namespace: String,
pub levels: Option<Vec<MetadataTaxonomyLevel>>,
}Fields§
§id: String§key: Option<String>§display_name: String§namespace: String§levels: Option<Vec<MetadataTaxonomyLevel>>Trait Implementations§
Source§impl Clone for MetadataTaxonomy
impl Clone for MetadataTaxonomy
Source§fn clone(&self) -> MetadataTaxonomy
fn clone(&self) -> MetadataTaxonomy
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 MetadataTaxonomy
impl Debug for MetadataTaxonomy
Source§impl Default for MetadataTaxonomy
impl Default for MetadataTaxonomy
Source§fn default() -> MetadataTaxonomy
fn default() -> MetadataTaxonomy
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MetadataTaxonomy
impl<'de> Deserialize<'de> for MetadataTaxonomy
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 MetadataTaxonomy
impl PartialEq for MetadataTaxonomy
Source§impl Serialize for MetadataTaxonomy
impl Serialize for MetadataTaxonomy
impl StructuralPartialEq for MetadataTaxonomy
Auto Trait Implementations§
impl Freeze for MetadataTaxonomy
impl RefUnwindSafe for MetadataTaxonomy
impl Send for MetadataTaxonomy
impl Sync for MetadataTaxonomy
impl Unpin for MetadataTaxonomy
impl UnsafeUnpin for MetadataTaxonomy
impl UnwindSafe for MetadataTaxonomy
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