#[repr(u8)]pub enum Decimation {
Show 32 variants
DEC_1 = 0,
DEC_2 = 1,
DEC_3 = 2,
DEC_4 = 3,
DEC_5 = 4,
DEC_6 = 5,
DEC_7 = 6,
DEC_8 = 7,
DEC_9 = 8,
DEC_10 = 9,
DEC_11 = 10,
DEC_12 = 11,
DEC_13 = 12,
DEC_14 = 13,
DEC_15 = 14,
DEC_16 = 15,
DEC_17 = 16,
DEC_18 = 17,
DEC_19 = 18,
DEC_20 = 19,
DEC_21 = 20,
DEC_22 = 21,
DEC_23 = 22,
DEC_24 = 23,
DEC_25 = 24,
DEC_26 = 25,
DEC_27 = 26,
DEC_28 = 27,
DEC_29 = 28,
DEC_30 = 29,
DEC_31 = 30,
DEC_32 = 31,
}Variants§
DEC_1 = 0
1
DEC_2 = 1
2
DEC_3 = 2
3
DEC_4 = 3
4
DEC_5 = 4
5
DEC_6 = 5
6
DEC_7 = 6
7
DEC_8 = 7
8
DEC_9 = 8
9
DEC_10 = 9
10
DEC_11 = 10
11
DEC_12 = 11
12
DEC_13 = 12
13
DEC_14 = 13
14
DEC_15 = 14
15
DEC_16 = 15
16
DEC_17 = 16
17
DEC_18 = 17
18
DEC_19 = 18
19
DEC_20 = 19
20
DEC_21 = 20
21
DEC_22 = 21
22
DEC_23 = 22
23
DEC_24 = 23
24
DEC_25 = 24
25
DEC_26 = 25
26
DEC_27 = 26
27
DEC_28 = 27
28
DEC_29 = 28
29
DEC_30 = 29
30
DEC_31 = 30
31
DEC_32 = 31
32
Implementations§
Source§impl Decimation
impl Decimation
Trait Implementations§
Source§impl Clone for Decimation
impl Clone for Decimation
Source§fn clone(&self) -> Decimation
fn clone(&self) -> Decimation
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 Decimation
impl Debug for Decimation
Source§impl From<Decimation> for u8
impl From<Decimation> for u8
Source§fn from(val: Decimation) -> u8
fn from(val: Decimation) -> u8
Converts to this type from the input type.
Source§impl From<u8> for Decimation
impl From<u8> for Decimation
Source§fn from(val: u8) -> Decimation
fn from(val: u8) -> Decimation
Converts to this type from the input type.
Source§impl Ord for Decimation
impl Ord for Decimation
Source§fn cmp(&self, other: &Decimation) -> Ordering
fn cmp(&self, other: &Decimation) -> 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 Decimation
impl PartialEq for Decimation
Source§impl PartialOrd for Decimation
impl PartialOrd for Decimation
impl Copy for Decimation
impl Eq for Decimation
impl StructuralPartialEq for Decimation
Auto Trait Implementations§
impl Freeze for Decimation
impl RefUnwindSafe for Decimation
impl Send for Decimation
impl Sync for Decimation
impl Unpin for Decimation
impl UnwindSafe for Decimation
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