pub struct MeasurementUnit {
pub area_unit: Option<String>,
pub custom_unit: Option<MeasurementUnitCustom>,
pub generic_unit: Option<String>,
pub length_unit: Option<String>,
pub time_unit: Option<String>,
pub type_name: Option<String>,
pub volume_unit: Option<String>,
pub weight_unit: Option<String>,
}Fields§
§area_unit: Option<String>§custom_unit: Option<MeasurementUnitCustom>§generic_unit: Option<String>§length_unit: Option<String>§time_unit: Option<String>§type_name: Option<String>§volume_unit: Option<String>§weight_unit: Option<String>Trait Implementations§
Source§impl Clone for MeasurementUnit
impl Clone for MeasurementUnit
Source§fn clone(&self) -> MeasurementUnit
fn clone(&self) -> MeasurementUnit
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 MeasurementUnit
impl Debug for MeasurementUnit
Source§impl<'de> Deserialize<'de> for MeasurementUnit
impl<'de> Deserialize<'de> for MeasurementUnit
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 MeasurementUnit
impl RefUnwindSafe for MeasurementUnit
impl Send for MeasurementUnit
impl Sync for MeasurementUnit
impl Unpin for MeasurementUnit
impl UnwindSafe for MeasurementUnit
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