pub struct Attribute {
pub id: String,
pub annotations: Option<Vec<Annotation>>,
pub links: Option<Vec<Link>>,
pub usage: Usage,
pub attribute_relationship: AttributeRelationship,
pub measure_relationship: Option<Vec<String>>,
pub concept_identity: String,
pub concept_roles: Option<Vec<String>>,
pub local_representation: LocalRepresentation,
pub other: Option<HashMap<String, Value>>,
}
Expand description
A characteristic of an object or entity.
Fields§
§id: String
§annotations: Option<Vec<Annotation>>
§links: Option<Vec<Link>>
§usage: Usage
§attribute_relationship: AttributeRelationship
§measure_relationship: Option<Vec<String>>
§concept_identity: String
§concept_roles: Option<Vec<String>>
§local_representation: LocalRepresentation
§other: Option<HashMap<String, Value>>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Attribute
impl<'de> Deserialize<'de> for Attribute
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
impl Eq for Attribute
impl StructuralPartialEq for Attribute
Auto Trait Implementations§
impl Freeze for Attribute
impl RefUnwindSafe for Attribute
impl Send for Attribute
impl Sync for Attribute
impl Unpin for Attribute
impl UnwindSafe for Attribute
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