pub enum Tooth {
Show 42 variants
V0(Option<Element>),
V1(Option<Element>),
V11(Option<Element>),
V12(Option<Element>),
V13(Option<Element>),
V14(Option<Element>),
V15(Option<Element>),
V16(Option<Element>),
V17(Option<Element>),
V18(Option<Element>),
V2(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>),
V3(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>),
V4(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>),
V5(Option<Element>),
V6(Option<Element>),
V7(Option<Element>),
V8(Option<Element>),
Null(Option<Element>),
}Variants§
V0(Option<Element>)
Oral cavity
V1(Option<Element>)
1
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
V2(Option<Element>)
2
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
V3(Option<Element>)
3
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
V4(Option<Element>)
4
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
V5(Option<Element>)
5
V6(Option<Element>)
6
V7(Option<Element>)
7
V8(Option<Element>)
8
Null(Option<Element>)
If value is missing and just the element is present.
Implementations§
Source§impl Tooth
impl Tooth
pub fn serialize_as_field<M: SerializeMap>( &self, field_name: &str, serializer: &mut M, ) -> Result<(), M::Error>
pub fn serialize_as_vector<M: SerializeMap>( field_name: &str, values: &[Box<Self>], serializer: &mut M, ) -> Result<(), M::Error>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Tooth
impl<'de> Deserialize<'de> for Tooth
Source§fn deserialize<D: Deserializer<'de>>(d: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(d: D) -> Result<Self, D::Error>
Deserialize this value from the given Serde deserializer. Read more
Source§impl MetaValue for Tooth
impl MetaValue for Tooth
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 fhir_type(&self) -> &'static str
fn is_many(&self) -> bool
Auto Trait Implementations§
impl Freeze for Tooth
impl RefUnwindSafe for Tooth
impl Send for Tooth
impl Sync for Tooth
impl Unpin for Tooth
impl UnsafeUnpin for Tooth
impl UnwindSafe for Tooth
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> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
impl<T> ErasedDestructor for Twhere
T: 'static,
§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