pub enum IngredientSubstanceStrengthConcentration {
Ratio(Box<Ratio>),
RatioRange(Box<RatioRange>),
CodeableConcept(Box<CodeableConcept>),
Quantity(Box<Quantity>),
Invalid,
}
Expand description
The strength per unitary volume (or mass).
Variants§
Ratio(Box<Ratio>)
RatioRange(Box<RatioRange>)
CodeableConcept(Box<CodeableConcept>)
Quantity(Box<Quantity>)
Invalid
Trait Implementations§
source§impl Clone for IngredientSubstanceStrengthConcentration
impl Clone for IngredientSubstanceStrengthConcentration
source§fn clone(&self) -> IngredientSubstanceStrengthConcentration
fn clone(&self) -> IngredientSubstanceStrengthConcentration
Returns a copy 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 Default for IngredientSubstanceStrengthConcentration
impl Default for IngredientSubstanceStrengthConcentration
source§fn default() -> IngredientSubstanceStrengthConcentration
fn default() -> IngredientSubstanceStrengthConcentration
Returns the “default value” for a type. Read more
source§impl PartialEq<IngredientSubstanceStrengthConcentration> for IngredientSubstanceStrengthConcentration
impl PartialEq<IngredientSubstanceStrengthConcentration> for IngredientSubstanceStrengthConcentration
source§fn eq(&self, other: &IngredientSubstanceStrengthConcentration) -> bool
fn eq(&self, other: &IngredientSubstanceStrengthConcentration) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for IngredientSubstanceStrengthConcentration
Auto Trait Implementations§
impl RefUnwindSafe for IngredientSubstanceStrengthConcentration
impl Send for IngredientSubstanceStrengthConcentration
impl Sync for IngredientSubstanceStrengthConcentration
impl Unpin for IngredientSubstanceStrengthConcentration
impl UnwindSafe for IngredientSubstanceStrengthConcentration
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