pub enum NamingSystemType {
Codesystem,
Identifier,
Root,
}Expand description
NamingSystemType. Identifies the purpose of the naming system.
FHIR version: 5.0.0.
Variants§
Codesystem
codesystem
Code System. The naming system is used to define concepts and symbols to represent those concepts; e.g. UCUM, LOINC, NDC code, local lab codes, etc.
Identifier
identifier
Identifier. The naming system is used to manage identifiers (e.g. license numbers, order numbers, etc.).
Root
root
Root. The naming system is used as the root for other identifiers and naming systems.
Trait Implementations§
Source§impl AsRef<str> for NamingSystemType
impl AsRef<str> for NamingSystemType
Source§impl Clone for NamingSystemType
impl Clone for NamingSystemType
Source§fn clone(&self) -> NamingSystemType
fn clone(&self) -> NamingSystemType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 NamingSystemType
impl Debug for NamingSystemType
Source§impl<'de> Deserialize<'de> for NamingSystemType
impl<'de> Deserialize<'de> for NamingSystemType
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 Display for NamingSystemType
impl Display for NamingSystemType
Source§impl From<NamingSystemType> for CodeableConcept
impl From<NamingSystemType> for CodeableConcept
Source§fn from(code: NamingSystemType) -> Self
fn from(code: NamingSystemType) -> Self
Converts to this type from the input type.
Source§impl From<NamingSystemType> for Coding
impl From<NamingSystemType> for Coding
Source§fn from(code: NamingSystemType) -> Self
fn from(code: NamingSystemType) -> Self
Converts to this type from the input type.
Source§impl FromStr for NamingSystemType
impl FromStr for NamingSystemType
Source§impl Hash for NamingSystemType
impl Hash for NamingSystemType
Source§impl PartialEq for NamingSystemType
impl PartialEq for NamingSystemType
Source§fn eq(&self, other: &NamingSystemType) -> bool
fn eq(&self, other: &NamingSystemType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for NamingSystemType
impl Serialize for NamingSystemType
impl Copy for NamingSystemType
impl Eq for NamingSystemType
impl StructuralPartialEq for NamingSystemType
Auto Trait Implementations§
impl Freeze for NamingSystemType
impl RefUnwindSafe for NamingSystemType
impl Send for NamingSystemType
impl Sync for NamingSystemType
impl Unpin for NamingSystemType
impl UnsafeUnpin for NamingSystemType
impl UnwindSafe for NamingSystemType
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