pub struct Component {Show 15 fields
pub id: String,
pub name: Option<String>,
pub names: Option<LocalizedText>,
pub description: Option<String>,
pub descriptions: Option<LocalizedText>,
pub key_position: Option<usize>,
pub roles: Option<Vec<String>>,
pub is_mandatory: Option<bool>,
pub relationship: Option<AttributeRelationship>,
pub format: Option<Format>,
pub default_value: Option<NumberOrString>,
pub links: Option<Vec<Link>>,
pub annotations: Option<Vec<usize>>,
pub values: Option<Vec<Option<ComponentValue>>>,
pub other: Option<HashMap<String, Value>>,
}
Expand description
A dimension, measure, or attribute used in the message.
Fields§
§id: String
§name: Option<String>
§names: Option<LocalizedText>
§description: Option<String>
§descriptions: Option<LocalizedText>
§key_position: Option<usize>
§roles: Option<Vec<String>>
§is_mandatory: Option<bool>
§relationship: Option<AttributeRelationship>
§format: Option<Format>
§default_value: Option<NumberOrString>
§links: Option<Vec<Link>>
§annotations: Option<Vec<usize>>
§values: Option<Vec<Option<ComponentValue>>>
§other: Option<HashMap<String, Value>>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Component
impl<'de> Deserialize<'de> for Component
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 StructuralPartialEq for Component
Auto Trait Implementations§
impl Freeze for Component
impl RefUnwindSafe for Component
impl Send for Component
impl Sync for Component
impl Unpin for Component
impl UnwindSafe for Component
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