pub enum MassFlowRateUnit {
KgPerS,
GramPerS,
PoundPerS,
KgPerH,
}Expand description
Display/conversion units for MassFlowRate.
Variants§
KgPerS
Kilograms per second (kg/s) – SI derived unit.
GramPerS
Grams per second (g/s).
PoundPerS
Pounds per second (lb/s).
KgPerH
Kilograms per hour (kg/h).
Trait Implementations§
Source§impl Clone for MassFlowRateUnit
impl Clone for MassFlowRateUnit
Source§fn clone(&self) -> MassFlowRateUnit
fn clone(&self) -> MassFlowRateUnit
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 MassFlowRateUnit
impl Debug for MassFlowRateUnit
Source§impl PartialEq for MassFlowRateUnit
impl PartialEq for MassFlowRateUnit
impl Copy for MassFlowRateUnit
impl Eq for MassFlowRateUnit
impl StructuralPartialEq for MassFlowRateUnit
Auto Trait Implementations§
impl Freeze for MassFlowRateUnit
impl RefUnwindSafe for MassFlowRateUnit
impl Send for MassFlowRateUnit
impl Sync for MassFlowRateUnit
impl Unpin for MassFlowRateUnit
impl UnsafeUnpin for MassFlowRateUnit
impl UnwindSafe for MassFlowRateUnit
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