pub enum ExampleMetadata {
A,
B,
C,
_Custom(String),
}
Expand description
ExampleMetadata. This is an example code system that illustrates usage of the metadata resource elements introduced in R5
FHIR version: 5.0.0.
Variants§
Trait Implementations§
Source§impl AsRef<str> for ExampleMetadata
impl AsRef<str> for ExampleMetadata
Source§impl Clone for ExampleMetadata
impl Clone for ExampleMetadata
Source§fn clone(&self) -> ExampleMetadata
fn clone(&self) -> ExampleMetadata
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 Debug for ExampleMetadata
impl Debug for ExampleMetadata
Source§impl<'de> Deserialize<'de> for ExampleMetadata
impl<'de> Deserialize<'de> for ExampleMetadata
Source§fn deserialize<D>(
deserializer: D,
) -> Result<ExampleMetadata, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D,
) -> Result<ExampleMetadata, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for ExampleMetadata
impl Display for ExampleMetadata
Source§impl From<ExampleMetadata> for CodeableConcept
impl From<ExampleMetadata> for CodeableConcept
Source§fn from(code: ExampleMetadata) -> CodeableConcept
fn from(code: ExampleMetadata) -> CodeableConcept
Converts to this type from the input type.
Source§impl From<ExampleMetadata> for Coding
impl From<ExampleMetadata> for Coding
Source§fn from(code: ExampleMetadata) -> Coding
fn from(code: ExampleMetadata) -> Coding
Converts to this type from the input type.
Source§impl FromStr for ExampleMetadata
impl FromStr for ExampleMetadata
Source§impl Hash for ExampleMetadata
impl Hash for ExampleMetadata
Source§impl PartialEq for ExampleMetadata
impl PartialEq for ExampleMetadata
Source§impl Serialize for ExampleMetadata
impl Serialize for ExampleMetadata
Source§fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for ExampleMetadata
impl StructuralPartialEq for ExampleMetadata
Auto Trait Implementations§
impl Freeze for ExampleMetadata
impl RefUnwindSafe for ExampleMetadata
impl Send for ExampleMetadata
impl Sync for ExampleMetadata
impl Unpin for ExampleMetadata
impl UnwindSafe for ExampleMetadata
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string
, but without panic on OOM.