pub enum Teeth {
Show 33 variants
V11(Option<Element>),
V12(Option<Element>),
V13(Option<Element>),
V14(Option<Element>),
V15(Option<Element>),
V16(Option<Element>),
V17(Option<Element>),
V18(Option<Element>),
V21(Option<Element>),
V22(Option<Element>),
V23(Option<Element>),
V24(Option<Element>),
V25(Option<Element>),
V26(Option<Element>),
V27(Option<Element>),
V28(Option<Element>),
V31(Option<Element>),
V32(Option<Element>),
V33(Option<Element>),
V34(Option<Element>),
V35(Option<Element>),
V36(Option<Element>),
V37(Option<Element>),
V38(Option<Element>),
V41(Option<Element>),
V42(Option<Element>),
V43(Option<Element>),
V44(Option<Element>),
V45(Option<Element>),
V46(Option<Element>),
V47(Option<Element>),
V48(Option<Element>),
Null(Option<Element>),
}Variants§
V11(Option<Element>)
11
V12(Option<Element>)
12
V13(Option<Element>)
13
V14(Option<Element>)
14
V15(Option<Element>)
15
V16(Option<Element>)
16
V17(Option<Element>)
17
V18(Option<Element>)
18
V21(Option<Element>)
21
V22(Option<Element>)
22
V23(Option<Element>)
23
V24(Option<Element>)
24
V25(Option<Element>)
25
V26(Option<Element>)
26
V27(Option<Element>)
27
V28(Option<Element>)
28
V31(Option<Element>)
31
V32(Option<Element>)
32
V33(Option<Element>)
33
V34(Option<Element>)
34
V35(Option<Element>)
35
V36(Option<Element>)
36
V37(Option<Element>)
37
V38(Option<Element>)
38
V41(Option<Element>)
41
V42(Option<Element>)
42
V43(Option<Element>)
43
V44(Option<Element>)
44
V45(Option<Element>)
45
V46(Option<Element>)
46
V47(Option<Element>)
47
V48(Option<Element>)
48
Null(Option<Element>)
If value is missing and just the element is present.
Trait Implementations§
Source§impl FHIRJSONDeserializer for Teeth
impl FHIRJSONDeserializer for Teeth
fn from_json_str(s: &str) -> Result<Self, DeserializeError>
fn from_serde_value( json: &Value, context: Context<'_>, ) -> Result<Self, DeserializeError>
Source§impl FHIRJSONSerializer for Teeth
impl FHIRJSONSerializer for Teeth
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 Teeth
impl MetaValue for Teeth
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 Teeth
impl RefUnwindSafe for Teeth
impl Send for Teeth
impl Sync for Teeth
impl Unpin for Teeth
impl UnwindSafe for Teeth
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