pub enum StructureDefinitionKind {
ComplexType,
Logical,
PrimitiveType,
Resource,
}Expand description
StructureDefinitionKind. Defines the type of structure that a definition is describing.
FHIR version: 5.0.0.
Variants§
ComplexType
complex-type
Complex Data Type. A complex structure that defines a set of data elements that is suitable for use in ‘resources’. The base specification defines a number of complex types, and other specifications can define additional types. These structures do not have a maintained identity.
Logical
logical
Logical. A pattern or a template that is not intended to be a real resource or complex type.
PrimitiveType
primitive-type
Primitive Data Type. A primitive type that has a value and an extension. These can be used throughout complex datatype, Resource and extension definitions. Only the base specification can define primitive types.
Resource
resource
Resource. A ‘resource’ - a directed acyclic graph of elements that aggregrates other types into an identifiable entity. The base FHIR resources are defined by the FHIR specification itself but other ‘resources’ can be defined in additional specifications (though these will not be recognized as ‘resources’ by the FHIR specification; i.e. they do not get end-points etc., or act as the targets of references in FHIR defined resources - though other specifications can treat them this way).
Trait Implementations§
Source§impl AsRef<str> for StructureDefinitionKind
impl AsRef<str> for StructureDefinitionKind
Source§impl Clone for StructureDefinitionKind
impl Clone for StructureDefinitionKind
Source§fn clone(&self) -> StructureDefinitionKind
fn clone(&self) -> StructureDefinitionKind
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 StructureDefinitionKind
impl Debug for StructureDefinitionKind
Source§impl<'de> Deserialize<'de> for StructureDefinitionKind
impl<'de> Deserialize<'de> for StructureDefinitionKind
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 StructureDefinitionKind
impl Display for StructureDefinitionKind
Source§impl From<StructureDefinitionKind> for CodeableConcept
impl From<StructureDefinitionKind> for CodeableConcept
Source§fn from(code: StructureDefinitionKind) -> Self
fn from(code: StructureDefinitionKind) -> Self
Source§impl From<StructureDefinitionKind> for Coding
impl From<StructureDefinitionKind> for Coding
Source§fn from(code: StructureDefinitionKind) -> Self
fn from(code: StructureDefinitionKind) -> Self
Source§impl FromStr for StructureDefinitionKind
impl FromStr for StructureDefinitionKind
Source§impl Hash for StructureDefinitionKind
impl Hash for StructureDefinitionKind
Source§impl PartialEq for StructureDefinitionKind
impl PartialEq for StructureDefinitionKind
Source§fn eq(&self, other: &StructureDefinitionKind) -> bool
fn eq(&self, other: &StructureDefinitionKind) -> bool
self and other values to be equal, and is used by ==.