pub enum Languages {
Show 57 variants
Ar(Option<Element>),
Bn(Option<Element>),
Cs(Option<Element>),
Da(Option<Element>),
De(Option<Element>),
DeAT(Option<Element>),
DeCH(Option<Element>),
DeDE(Option<Element>),
El(Option<Element>),
En(Option<Element>),
EnAU(Option<Element>),
EnCA(Option<Element>),
EnGB(Option<Element>),
EnIN(Option<Element>),
EnNZ(Option<Element>),
EnSG(Option<Element>),
EnUS(Option<Element>),
Es(Option<Element>),
EsAR(Option<Element>),
EsES(Option<Element>),
EsUY(Option<Element>),
Fi(Option<Element>),
Fr(Option<Element>),
FrBE(Option<Element>),
FrCH(Option<Element>),
FrFR(Option<Element>),
Fy(Option<Element>),
FyNL(Option<Element>),
Hi(Option<Element>),
Hr(Option<Element>),
It(Option<Element>),
ItCH(Option<Element>),
ItIT(Option<Element>),
Ja(Option<Element>),
Ko(Option<Element>),
Nl(Option<Element>),
NlBE(Option<Element>),
NlNL(Option<Element>),
No(Option<Element>),
NoNO(Option<Element>),
Pa(Option<Element>),
Pl(Option<Element>),
Pt(Option<Element>),
PtBR(Option<Element>),
Ru(Option<Element>),
RuRU(Option<Element>),
Sr(Option<Element>),
SrRS(Option<Element>),
Sv(Option<Element>),
SvSE(Option<Element>),
Te(Option<Element>),
Zh(Option<Element>),
ZhCN(Option<Element>),
ZhHK(Option<Element>),
ZhSG(Option<Element>),
ZhTW(Option<Element>),
Null(Option<Element>),
}Variants§
Ar(Option<Element>)
Arabic
Bn(Option<Element>)
Bengali
Cs(Option<Element>)
Czech
Da(Option<Element>)
Danish
De(Option<Element>)
German
DeAT(Option<Element>)
German (Austria)
DeCH(Option<Element>)
German (Switzerland)
DeDE(Option<Element>)
German (Germany)
El(Option<Element>)
Greek
En(Option<Element>)
English
EnAU(Option<Element>)
English (Australia)
EnCA(Option<Element>)
English (Canada)
EnGB(Option<Element>)
English (Great Britain)
EnIN(Option<Element>)
English (India)
EnNZ(Option<Element>)
English (New Zeland)
EnSG(Option<Element>)
English (Singapore)
EnUS(Option<Element>)
English (United States)
Es(Option<Element>)
Spanish
EsAR(Option<Element>)
Spanish (Argentina)
EsES(Option<Element>)
Spanish (Spain)
EsUY(Option<Element>)
Spanish (Uruguay)
Fi(Option<Element>)
Finnish
Fr(Option<Element>)
French
FrBE(Option<Element>)
French (Belgium)
FrCH(Option<Element>)
French (Switzerland)
FrFR(Option<Element>)
French (France)
Fy(Option<Element>)
Frysian
FyNL(Option<Element>)
Frysian (Netherlands)
Hi(Option<Element>)
Hindi
Hr(Option<Element>)
Croatian
It(Option<Element>)
Italian
ItCH(Option<Element>)
Italian (Switzerland)
ItIT(Option<Element>)
Italian (Italy)
Ja(Option<Element>)
Japanese
Ko(Option<Element>)
Korean
Nl(Option<Element>)
Dutch
NlBE(Option<Element>)
Dutch (Belgium)
NlNL(Option<Element>)
Dutch (Netherlands)
No(Option<Element>)
Norwegian
NoNO(Option<Element>)
Norwegian (Norway)
Pa(Option<Element>)
Punjabi
Pl(Option<Element>)
Polish
Pt(Option<Element>)
Portuguese
PtBR(Option<Element>)
Portuguese (Brazil)
Ru(Option<Element>)
Russian
RuRU(Option<Element>)
Russian (Russia)
Sr(Option<Element>)
Serbian
SrRS(Option<Element>)
Serbian (Serbia)
Sv(Option<Element>)
Swedish
SvSE(Option<Element>)
Swedish (Sweden)
Te(Option<Element>)
Telegu
Zh(Option<Element>)
Chinese
ZhCN(Option<Element>)
Chinese (China)
ZhHK(Option<Element>)
Chinese (Hong Kong)
ZhSG(Option<Element>)
Chinese (Singapore)
ZhTW(Option<Element>)
Chinese (Taiwan)
Null(Option<Element>)
If value is missing and just the element is present.
Trait Implementations§
Source§impl FHIRJSONDeserializer for Languages
impl FHIRJSONDeserializer for Languages
fn from_json_str(s: &str) -> Result<Self, DeserializeError>
fn from_serde_value( json: &Value, context: Context<'_>, ) -> Result<Self, DeserializeError>
Source§impl FHIRJSONSerializer for Languages
impl FHIRJSONSerializer for Languages
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 Languages
impl MetaValue for Languages
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 Languages
impl RefUnwindSafe for Languages
impl Send for Languages
impl Sync for Languages
impl Unpin for Languages
impl UnwindSafe for Languages
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
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>
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>
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