pub struct CodeSystemConceptBackboneElement {
pub id: Option<String>,
pub extension: Option<Vec<Extension>>,
pub modifier_extension: Option<Vec<Extension>>,
pub code: Option<CodeDt>,
pub display: Option<StringDt>,
pub definition: Option<StringDt>,
pub designation: Option<Vec<CodeSystemConceptDesignationBackboneElement>>,
pub property: Option<Vec<CodeSystemConceptPropertyBackboneElement>>,
pub concept: Option<Vec<CodeSystemConceptBackboneElement>>,
}
Fields§
§id: Option<String>
Unique id for inter-element referencing
extension: Option<Vec<Extension>>
Additional content defined by implementations
modifier_extension: Option<Vec<Extension>>
Extensions that cannot be ignored even if unrecognized
code: Option<CodeDt>
Code that identifies concept
display: Option<StringDt>
Text to display to the user
definition: Option<StringDt>
Formal definition
designation: Option<Vec<CodeSystemConceptDesignationBackboneElement>>
Additional representations for the concept
property: Option<Vec<CodeSystemConceptPropertyBackboneElement>>
Property value for the concept
concept: Option<Vec<CodeSystemConceptBackboneElement>>
Child Concepts (is-a/contains/categorizes)
Trait Implementations§
Source§impl Clone for CodeSystemConceptBackboneElement
impl Clone for CodeSystemConceptBackboneElement
Source§fn clone(&self) -> CodeSystemConceptBackboneElement
fn clone(&self) -> CodeSystemConceptBackboneElement
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 Default for CodeSystemConceptBackboneElement
impl Default for CodeSystemConceptBackboneElement
Source§fn default() -> CodeSystemConceptBackboneElement
fn default() -> CodeSystemConceptBackboneElement
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CodeSystemConceptBackboneElement
impl<'de> Deserialize<'de> for CodeSystemConceptBackboneElement
fn deserialize<De>(deserializer: De) -> Result<Self>where
De: Deserializer<'de>,
Auto Trait Implementations§
impl Freeze for CodeSystemConceptBackboneElement
impl RefUnwindSafe for CodeSystemConceptBackboneElement
impl Send for CodeSystemConceptBackboneElement
impl Sync for CodeSystemConceptBackboneElement
impl Unpin for CodeSystemConceptBackboneElement
impl UnwindSafe for CodeSystemConceptBackboneElement
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