pub enum V3Hl7Realm {
Show 46 variants
AR(Option<Element>),
AT(Option<Element>),
AU(Option<Element>),
AffiliateRealms(Option<Element>),
BR(Option<Element>),
BindingRealms(Option<Element>),
C1(Option<Element>),
CA(Option<Element>),
CH(Option<Element>),
CL(Option<Element>),
CN(Option<Element>),
CO(Option<Element>),
CZ(Option<Element>),
DE(Option<Element>),
DK(Option<Element>),
ES(Option<Element>),
FI(Option<Element>),
FR(Option<Element>),
GB(Option<Element>),
GR(Option<Element>),
HR(Option<Element>),
IE(Option<Element>),
IN(Option<Element>),
IT(Option<Element>),
JP(Option<Element>),
KR(Option<Element>),
LT(Option<Element>),
MX(Option<Element>),
NL(Option<Element>),
NZ(Option<Element>),
NamespaceRealms(Option<Element>),
R1(Option<Element>),
RO(Option<Element>),
RU(Option<Element>),
SE(Option<Element>),
SG(Option<Element>),
SOA(Option<Element>),
TR(Option<Element>),
TW(Option<Element>),
UK(Option<Element>),
US(Option<Element>),
UV(Option<Element>),
UY(Option<Element>),
X1(Option<Element>),
ZZ(Option<Element>),
Null(Option<Element>),
}Variants§
AR(Option<Element>)
Argentina
AT(Option<Element>)
Austria
AU(Option<Element>)
Australia
AffiliateRealms(Option<Element>)
Affiliate Realms
BR(Option<Element>)
Brazil
BindingRealms(Option<Element>)
binding realms
C1(Option<Element>)
Unclassified Realm
CA(Option<Element>)
Canada
CH(Option<Element>)
Switzerland
CL(Option<Element>)
Chile
CN(Option<Element>)
China
CO(Option<Element>)
Columbia
CZ(Option<Element>)
Czech Republic
DE(Option<Element>)
Germany
DK(Option<Element>)
Denmark
ES(Option<Element>)
Spain
FI(Option<Element>)
Finland
FR(Option<Element>)
France
GB(Option<Element>)
Great Britain
GR(Option<Element>)
Greece
HR(Option<Element>)
Croatia
IE(Option<Element>)
Ireland
IN(Option<Element>)
India
IT(Option<Element>)
Italy
JP(Option<Element>)
Japan
KR(Option<Element>)
Korea
LT(Option<Element>)
Lithuania
MX(Option<Element>)
Mexico
NL(Option<Element>)
The Netherlands
NZ(Option<Element>)
New Zealand
NamespaceRealms(Option<Element>)
namespace realms
R1(Option<Element>)
Representative Realm
RO(Option<Element>)
Romania
RU(Option<Element>)
Russian Federation
SE(Option<Element>)
Sweden
SG(Option<Element>)
Singapore
SOA(Option<Element>)
Southern Africa
TR(Option<Element>)
Turkey
TW(Option<Element>)
Taiwan
UK(Option<Element>)
United Kingdom
US(Option<Element>)
United States of America
UV(Option<Element>)
Universal
UY(Option<Element>)
Uruguay
X1(Option<Element>)
Example Realm
ZZ(Option<Element>)
Localized Version
Null(Option<Element>)
If value is missing and just the element is present.
Trait Implementations§
Source§impl Clone for V3Hl7Realm
impl Clone for V3Hl7Realm
Source§fn clone(&self) -> V3Hl7Realm
fn clone(&self) -> V3Hl7Realm
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 V3Hl7Realm
impl Debug for V3Hl7Realm
Source§impl Default for V3Hl7Realm
impl Default for V3Hl7Realm
Source§impl FHIRJSONDeserializer for V3Hl7Realm
impl FHIRJSONDeserializer for V3Hl7Realm
fn from_json_str(s: &str) -> Result<Self, DeserializeError>
fn from_serde_value( json: &Value, context: Context<'_>, ) -> Result<Self, DeserializeError>
Source§impl FHIRJSONSerializer for V3Hl7Realm
impl FHIRJSONSerializer for V3Hl7Realm
fn serialize_value( &self, writer: &mut dyn Write, ) -> Result<bool, SerializeError>
fn serialize_extension( &self, writer: &mut dyn Write, ) -> Result<bool, SerializeError>
fn serialize_field( &self, field: &str, writer: &mut dyn Write, ) -> Result<bool, SerializeError>
fn is_fp_primitive(&self) -> bool
Source§impl MetaValue for V3Hl7Realm
impl MetaValue for V3Hl7Realm
fn fields(&self) -> Vec<&'static str>
fn get_field<'a>(&'a self, field: &str) -> Option<&'a dyn MetaValue>
fn get_field_mut<'a>(&'a mut self, field: &str) -> Option<&'a mut dyn MetaValue>
fn get_index<'a>(&'a self, _index: usize) -> Option<&'a dyn MetaValue>
fn get_index_mut<'a>( &'a mut self, _index: usize, ) -> Option<&'a mut dyn MetaValue>
fn flatten(&self) -> Vec<&dyn MetaValue>
fn as_any(&self) -> &dyn Any
fn typename(&self) -> &'static str
Auto Trait Implementations§
impl Freeze for V3Hl7Realm
impl RefUnwindSafe for V3Hl7Realm
impl Send for V3Hl7Realm
impl Sync for V3Hl7Realm
impl Unpin for V3Hl7Realm
impl UnwindSafe for V3Hl7Realm
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,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more