pub enum SiUnitPrefix {
Show 24 variants
Q = 30,
R = 27,
Y = 24,
Z = 21,
E = 18,
P = 15,
T = 12,
G = 9,
M = 6,
k = 3,
h = 2,
da = 1,
d = -1,
c = -2,
m = -3,
u = -6,
n = -9,
p = -12,
f = -15,
a = -18,
z = -21,
y = -24,
r = -27,
q = -30,
}Variants§
Q = 30
R = 27
Y = 24
Z = 21
E = 18
P = 15
T = 12
G = 9
M = 6
k = 3
h = 2
da = 1
d = -1
c = -2
m = -3
u = -6
n = -9
p = -12
f = -15
a = -18
z = -21
y = -24
r = -27
q = -30
Implementations§
Trait Implementations§
Source§impl Clone for SiUnitPrefix
impl Clone for SiUnitPrefix
Source§fn clone(&self) -> SiUnitPrefix
fn clone(&self) -> SiUnitPrefix
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 SiUnitPrefix
impl Debug for SiUnitPrefix
Source§impl<'de> Deserialize<'de> for SiUnitPrefix
impl<'de> Deserialize<'de> for SiUnitPrefix
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
Source§impl Ord for SiUnitPrefix
impl Ord for SiUnitPrefix
Source§fn cmp(&self, other: &SiUnitPrefix) -> Ordering
fn cmp(&self, other: &SiUnitPrefix) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for SiUnitPrefix
impl PartialEq for SiUnitPrefix
Source§impl PartialOrd for SiUnitPrefix
impl PartialOrd for SiUnitPrefix
Source§impl Serialize for SiUnitPrefix
impl Serialize for SiUnitPrefix
impl Copy for SiUnitPrefix
impl Eq for SiUnitPrefix
impl StructuralPartialEq for SiUnitPrefix
Auto Trait Implementations§
impl Freeze for SiUnitPrefix
impl RefUnwindSafe for SiUnitPrefix
impl Send for SiUnitPrefix
impl Sync for SiUnitPrefix
impl Unpin for SiUnitPrefix
impl UnwindSafe for SiUnitPrefix
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