pub struct Codelist {
pub artefact: CommonArtefactType,
pub is_partial: Option<bool>,
pub codes: Option<Vec<Item>>,
pub parent: Option<String>,
pub other: Option<HashMap<String, Value>>,
}
Expand description
The item scheme for a codelist.
Fields§
§artefact: CommonArtefactType
§is_partial: Option<bool>
§codes: Option<Vec<Item>>
§parent: Option<String>
§other: Option<HashMap<String, Value>>
Trait Implementations§
Source§impl Artefact for Codelist
impl Artefact for Codelist
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<'de> Deserialize<'de> for Codelist
impl<'de> Deserialize<'de> for Codelist
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 Codelist
impl ItemScheme for Codelist
impl Eq for Codelist
impl StructuralPartialEq for Codelist
Auto Trait Implementations§
impl Freeze for Codelist
impl RefUnwindSafe for Codelist
impl Send for Codelist
impl Sync for Codelist
impl Unpin for Codelist
impl UnwindSafe for Codelist
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