pub struct ValueSetConcept {
pub code: String,
pub display: Option<String>,
pub definition: Option<String>,
pub system: Option<String>,
}Expand description
Represents a FHIR ValueSet concept
Fields§
§code: String§display: Option<String>§definition: Option<String>§system: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for ValueSetConcept
impl Clone for ValueSetConcept
Source§fn clone(&self) -> ValueSetConcept
fn clone(&self) -> ValueSetConcept
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 moreAuto Trait Implementations§
impl Freeze for ValueSetConcept
impl RefUnwindSafe for ValueSetConcept
impl Send for ValueSetConcept
impl Sync for ValueSetConcept
impl Unpin for ValueSetConcept
impl UnsafeUnpin for ValueSetConcept
impl UnwindSafe for ValueSetConcept
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