pub struct ConceptScheme {
pub artefact: CommonArtefactType,
pub is_partial: Option<bool>,
pub concepts: Option<Vec<Item>>,
pub core_representation: Option<CoreRepresentation>,
pub iso_concept_reference: Option<IsoConceptReference>,
pub parent: Option<String>,
pub other: Option<HashMap<String, Value>>,
}
Expand description
The item scheme for a concept.
Fields§
§artefact: CommonArtefactType
§is_partial: Option<bool>
§concepts: Option<Vec<Item>>
§core_representation: Option<CoreRepresentation>
§iso_concept_reference: Option<IsoConceptReference>
§parent: Option<String>
§other: Option<HashMap<String, Value>>
Trait Implementations§
Source§impl Artefact for ConceptScheme
impl Artefact for ConceptScheme
fn artefact(&self) -> &CommonArtefactType
fn id(&self) -> &String
fn agency_id(&self) -> Option<&String>
fn version(&self) -> Option<&String>
fn name(&self) -> Option<&String>
fn names(&self) -> Option<&LocalizedText>
fn valid_from(&self) -> Option<&String>
fn valid_to(&self) -> Option<&String>
fn is_external_reference(&self) -> Option<bool>
fn annotations(&self) -> Option<&Vec<Annotation>>
fn links(&self) -> Option<&Vec<Link>>
Source§impl Clone for ConceptScheme
impl Clone for ConceptScheme
Source§fn clone(&self) -> ConceptScheme
fn clone(&self) -> ConceptScheme
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 ConceptScheme
impl Debug for ConceptScheme
Source§impl<'de> Deserialize<'de> for ConceptScheme
impl<'de> Deserialize<'de> for ConceptScheme
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 ItemScheme for ConceptScheme
impl ItemScheme for ConceptScheme
Source§impl PartialEq for ConceptScheme
impl PartialEq for ConceptScheme
Source§impl Serialize for ConceptScheme
impl Serialize for ConceptScheme
impl Eq for ConceptScheme
impl StructuralPartialEq for ConceptScheme
Auto Trait Implementations§
impl Freeze for ConceptScheme
impl RefUnwindSafe for ConceptScheme
impl Send for ConceptScheme
impl Sync for ConceptScheme
impl Unpin for ConceptScheme
impl UnwindSafe for ConceptScheme
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