pub struct MultiLanguageProperty {
pub extensions: Option<Vec<Extension>>,
pub category: Option<String>,
pub id_short: Option<String>,
pub display_name: Option<Vec<LangString>>,
pub description: Option<Vec<LangString>>,
pub semantic_id: Option<Reference>,
pub supplemental_semantic_ids: Option<Vec<Reference>>,
pub qualifiers: Option<Vec<Qualifier>>,
pub embedded_data_specifications: Option<Vec<EmbeddedDataSpecification>>,
pub value: Option<Vec<LangString>>,
pub value_id: Option<Reference>,
}Fields§
§extensions: Option<Vec<Extension>>§category: Option<String>§id_short: Option<String>§display_name: Option<Vec<LangString>>§description: Option<Vec<LangString>>§semantic_id: Option<Reference>§supplemental_semantic_ids: Option<Vec<Reference>>§qualifiers: Option<Vec<Qualifier>>§embedded_data_specifications: Option<Vec<EmbeddedDataSpecification>>§value: Option<Vec<LangString>>§value_id: Option<Reference>Implementations§
Trait Implementations§
Source§impl Clone for MultiLanguageProperty
impl Clone for MultiLanguageProperty
Source§fn clone(&self) -> MultiLanguageProperty
fn clone(&self) -> MultiLanguageProperty
Returns a duplicate 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 MultiLanguageProperty
impl Debug for MultiLanguageProperty
Source§impl Default for MultiLanguageProperty
impl Default for MultiLanguageProperty
Source§impl<'de> Deserialize<'de> for MultiLanguageProperty
impl<'de> Deserialize<'de> for MultiLanguageProperty
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 MultiLanguageProperty
impl PartialEq for MultiLanguageProperty
Source§impl Serialize for MultiLanguageProperty
impl Serialize for MultiLanguageProperty
impl StructuralPartialEq for MultiLanguageProperty
Auto Trait Implementations§
impl Freeze for MultiLanguageProperty
impl RefUnwindSafe for MultiLanguageProperty
impl Send for MultiLanguageProperty
impl Sync for MultiLanguageProperty
impl Unpin for MultiLanguageProperty
impl UnwindSafe for MultiLanguageProperty
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