pub enum IdentifierUse {
Official,
Old,
Secondary,
Temp,
Usual,
}Expand description
IdentifierUse. Identifies the purpose for this identifier, if known .
FHIR version: 5.0.0.
Variants§
Official
official
Official. The identifier considered to be most trusted for the identification of this item. Sometimes also known as “primary” and “main”. The determination of “official” is subjective and implementation guides often provide additional guidelines for use.
Old
old
Old. The identifier id no longer considered valid, but may be relevant for search purposes. E.g. Changes to identifier schemes, account merges, etc.
Secondary
secondary
Secondary. An identifier that was assigned in secondary use - it serves to identify the object in a relative context, but cannot be consistently assigned to the same object again in a different context.
Temp
temp
Temp. A temporary identifier.
Usual
usual
Usual. The identifier recommended for display and use in real-world interactions which should be used when such identifier is different from the “official” identifier.
Trait Implementations§
Source§impl AsRef<str> for IdentifierUse
impl AsRef<str> for IdentifierUse
Source§impl Clone for IdentifierUse
impl Clone for IdentifierUse
Source§fn clone(&self) -> IdentifierUse
fn clone(&self) -> IdentifierUse
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for IdentifierUse
impl Debug for IdentifierUse
Source§impl<'de> Deserialize<'de> for IdentifierUse
impl<'de> Deserialize<'de> for IdentifierUse
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>,
Source§impl Display for IdentifierUse
impl Display for IdentifierUse
Source§impl From<IdentifierUse> for CodeableConcept
impl From<IdentifierUse> for CodeableConcept
Source§fn from(code: IdentifierUse) -> Self
fn from(code: IdentifierUse) -> Self
Source§impl From<IdentifierUse> for Coding
impl From<IdentifierUse> for Coding
Source§fn from(code: IdentifierUse) -> Self
fn from(code: IdentifierUse) -> Self
Source§impl FromStr for IdentifierUse
impl FromStr for IdentifierUse
Source§impl Hash for IdentifierUse
impl Hash for IdentifierUse
Source§impl PartialEq for IdentifierUse
impl PartialEq for IdentifierUse
Source§fn eq(&self, other: &IdentifierUse) -> bool
fn eq(&self, other: &IdentifierUse) -> bool
self and other values to be equal, and is used by ==.