pub struct VocabularyElementList {
pub id: String,
pub attributes: Option<Vec<VocabularyAttribute>>,
pub children: Option<Vec<String>>,
}Expand description
A specific master data attribute / children list mapping.
Fields§
§id: StringIdentifier of the element
attributes: Option<Vec<VocabularyAttribute>>Attributes linked to the identifier (optional)
children: Option<Vec<String>>List of child IDs under this element
Trait Implementations§
Source§impl Clone for VocabularyElementList
impl Clone for VocabularyElementList
Source§fn clone(&self) -> VocabularyElementList
fn clone(&self) -> VocabularyElementList
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 VocabularyElementList
impl Debug for VocabularyElementList
Source§impl<'de> Deserialize<'de> for VocabularyElementList
impl<'de> Deserialize<'de> for VocabularyElementList
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 VocabularyElementList
impl RefUnwindSafe for VocabularyElementList
impl Send for VocabularyElementList
impl Sync for VocabularyElementList
impl Unpin for VocabularyElementList
impl UnsafeUnpin for VocabularyElementList
impl UnwindSafe for VocabularyElementList
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