pub struct AttributeList {
pub id: String,
pub annotations: Option<Vec<Annotation>>,
pub links: Option<Vec<Link>>,
pub attributes: Option<Vec<Attribute>>,
pub metadata_attribute_usages: Option<Vec<MetadataAttributeUsage>>,
pub other: Option<HashMap<String, Value>>,
}
Expand description
A list of attributes in the data structure definition.
Fields§
§id: String
§annotations: Option<Vec<Annotation>>
§links: Option<Vec<Link>>
§attributes: Option<Vec<Attribute>>
§metadata_attribute_usages: Option<Vec<MetadataAttributeUsage>>
§other: Option<HashMap<String, Value>>
Trait Implementations§
Source§impl Clone for AttributeList
impl Clone for AttributeList
Source§fn clone(&self) -> AttributeList
fn clone(&self) -> AttributeList
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 Debug for AttributeList
impl Debug for AttributeList
Source§impl Default for AttributeList
impl Default for AttributeList
Source§fn default() -> AttributeList
fn default() -> AttributeList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AttributeList
impl<'de> Deserialize<'de> for AttributeList
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 AttributeList
impl PartialEq for AttributeList
Source§impl Serialize for AttributeList
impl Serialize for AttributeList
impl Eq for AttributeList
impl StructuralPartialEq for AttributeList
Auto Trait Implementations§
impl Freeze for AttributeList
impl RefUnwindSafe for AttributeList
impl Send for AttributeList
impl Sync for AttributeList
impl Unpin for AttributeList
impl UnwindSafe for AttributeList
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