pub struct ActiveIngredient {
pub active_ingredient_code: Option<String>,
pub order: Option<String>,
pub dose: Option<String>,
pub dose_unit: Option<String>,
pub composition_dose: Option<String>,
pub composition_unit: Option<String>,
pub administration_dose: Option<String>,
pub administration_unit: Option<String>,
pub prescription_dose: Option<String>,
pub prescription_unit: Option<String>,
}Expand description
Active ingredient composition for a prescription
Fields§
§active_ingredient_code: Option<String>§order: Option<String>§dose: Option<String>§dose_unit: Option<String>§composition_dose: Option<String>§composition_unit: Option<String>§administration_dose: Option<String>§administration_unit: Option<String>§prescription_dose: Option<String>§prescription_unit: Option<String>Trait Implementations§
Source§impl Clone for ActiveIngredient
impl Clone for ActiveIngredient
Source§fn clone(&self) -> ActiveIngredient
fn clone(&self) -> ActiveIngredient
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ActiveIngredient
impl Debug for ActiveIngredient
Source§impl<'de> Deserialize<'de> for ActiveIngredient
impl<'de> Deserialize<'de> for ActiveIngredient
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ActiveIngredient
impl RefUnwindSafe for ActiveIngredient
impl Send for ActiveIngredient
impl Sync for ActiveIngredient
impl Unpin for ActiveIngredient
impl UnsafeUnpin for ActiveIngredient
impl UnwindSafe for ActiveIngredient
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