pub enum SensorUnitPrefix {
Show 21 variants
None = 0,
Deci = 1,
Centi = 2,
Milli = 3,
Micro = 4,
Nano = 5,
Pico = 6,
Femto = 7,
Atto = 8,
Zepto = 9,
Yocto = 10,
Deca = 17,
Hecto = 18,
Kilo = 19,
Mega = 20,
Giga = 21,
Terra = 22,
Peta = 23,
Exa = 24,
Zetta = 25,
Yotta = 26,
}
Variants§
None = 0
Deci = 1
Centi = 2
Milli = 3
Micro = 4
Nano = 5
Pico = 6
Femto = 7
Atto = 8
Zepto = 9
Yocto = 10
Deca = 17
Hecto = 18
Kilo = 19
Mega = 20
Giga = 21
Terra = 22
Peta = 23
Exa = 24
Zetta = 25
Yotta = 26
Trait Implementations§
Source§impl Clone for SensorUnitPrefix
impl Clone for SensorUnitPrefix
Source§fn clone(&self) -> SensorUnitPrefix
fn clone(&self) -> SensorUnitPrefix
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 SensorUnitPrefix
impl Debug for SensorUnitPrefix
Source§impl PartialEq for SensorUnitPrefix
impl PartialEq for SensorUnitPrefix
Source§impl TryFrom<u8> for SensorUnitPrefix
impl TryFrom<u8> for SensorUnitPrefix
impl Copy for SensorUnitPrefix
impl StructuralPartialEq for SensorUnitPrefix
Auto Trait Implementations§
impl Freeze for SensorUnitPrefix
impl RefUnwindSafe for SensorUnitPrefix
impl Send for SensorUnitPrefix
impl Sync for SensorUnitPrefix
impl Unpin for SensorUnitPrefix
impl UnwindSafe for SensorUnitPrefix
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