pub enum FHIRFormatType {
Json,
Ttl,
Xml,
}Expand description
FHIRFormatType. FHIR Format types
FHIR version: 5.0.0.
Variants§
Json
json
JSON. JSON content-type corresponding to the application/fhir+json mime-type.
Ttl
ttl
TTL. RDF content-type corresponding to the text/turtle mime-type.
Xml
xml
XML. XML content-type corresponding to the application/fhir+xml mime-type.
Trait Implementations§
Source§impl AsRef<str> for FHIRFormatType
impl AsRef<str> for FHIRFormatType
Source§impl Clone for FHIRFormatType
impl Clone for FHIRFormatType
Source§fn clone(&self) -> FHIRFormatType
fn clone(&self) -> FHIRFormatType
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 FHIRFormatType
impl Debug for FHIRFormatType
Source§impl<'de> Deserialize<'de> for FHIRFormatType
impl<'de> Deserialize<'de> for FHIRFormatType
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 FHIRFormatType
impl Display for FHIRFormatType
Source§impl From<FHIRFormatType> for CodeableConcept
impl From<FHIRFormatType> for CodeableConcept
Source§fn from(code: FHIRFormatType) -> Self
fn from(code: FHIRFormatType) -> Self
Converts to this type from the input type.
Source§impl From<FHIRFormatType> for Coding
impl From<FHIRFormatType> for Coding
Source§fn from(code: FHIRFormatType) -> Self
fn from(code: FHIRFormatType) -> Self
Converts to this type from the input type.
Source§impl FromStr for FHIRFormatType
impl FromStr for FHIRFormatType
Source§impl Hash for FHIRFormatType
impl Hash for FHIRFormatType
Source§impl PartialEq for FHIRFormatType
impl PartialEq for FHIRFormatType
Source§fn eq(&self, other: &FHIRFormatType) -> bool
fn eq(&self, other: &FHIRFormatType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for FHIRFormatType
impl Serialize for FHIRFormatType
impl Copy for FHIRFormatType
impl Eq for FHIRFormatType
impl StructuralPartialEq for FHIRFormatType
Auto Trait Implementations§
impl Freeze for FHIRFormatType
impl RefUnwindSafe for FHIRFormatType
impl Send for FHIRFormatType
impl Sync for FHIRFormatType
impl Unpin for FHIRFormatType
impl UnsafeUnpin for FHIRFormatType
impl UnwindSafe for FHIRFormatType
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