pub enum ServiceUscls {
Show 21 variants
V1101(Option<Element>),
V1102(Option<Element>),
V1103(Option<Element>),
V11101(Option<Element>),
V11102(Option<Element>),
V11103(Option<Element>),
V11104(Option<Element>),
V1201(Option<Element>),
V1205(Option<Element>),
V2101(Option<Element>),
V2102(Option<Element>),
V21211(Option<Element>),
V21212(Option<Element>),
V2141(Option<Element>),
V2601(Option<Element>),
V27211(Option<Element>),
V67211(Option<Element>),
V99111(Option<Element>),
V99333(Option<Element>),
V99555(Option<Element>),
Null(Option<Element>),
}Variants§
V1101(Option<Element>)
Exam, comp, primary
V1102(Option<Element>)
Exam, comp, mixed
V1103(Option<Element>)
Exam, comp, permanent
V11101(Option<Element>)
Polishing, 1 unit
V11102(Option<Element>)
Polishing, 2 unit
V11103(Option<Element>)
Polishing, 3 unit
V11104(Option<Element>)
Polishing, 4 unit
V1201(Option<Element>)
Exam, recall
V1205(Option<Element>)
Exam, emergency
V2101(Option<Element>)
Radiograph, series (12)
V2102(Option<Element>)
Radiograph, series (16)
V21211(Option<Element>)
Amalgam, 1 surface
V21212(Option<Element>)
Amalgam, 2 surface
V2141(Option<Element>)
Radiograph, bitewing
V2601(Option<Element>)
Radiograph, panoramic
V27211(Option<Element>)
Crown, PFM
V67211(Option<Element>)
Maryland Bridge
V99111(Option<Element>)
Lab, commercial
V99333(Option<Element>)
Lab, in office
V99555(Option<Element>)
Expense
Null(Option<Element>)
If value is missing and just the element is present.
Trait Implementations§
Source§impl Clone for ServiceUscls
impl Clone for ServiceUscls
Source§fn clone(&self) -> ServiceUscls
fn clone(&self) -> ServiceUscls
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 ServiceUscls
impl Debug for ServiceUscls
Source§impl Default for ServiceUscls
impl Default for ServiceUscls
Source§impl FHIRJSONDeserializer for ServiceUscls
impl FHIRJSONDeserializer for ServiceUscls
fn from_json_str(s: &str) -> Result<Self, DeserializeError>
fn from_serde_value( json: &Value, context: Context<'_>, ) -> Result<Self, DeserializeError>
Source§impl FHIRJSONSerializer for ServiceUscls
impl FHIRJSONSerializer for ServiceUscls
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 ServiceUscls
impl MetaValue for ServiceUscls
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 ServiceUscls
impl RefUnwindSafe for ServiceUscls
impl Send for ServiceUscls
impl Sync for ServiceUscls
impl Unpin for ServiceUscls
impl UnwindSafe for ServiceUscls
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