#[repr(u8)]pub enum CalAvgs {
Show 16 variants
NO_AVERAGE = 0,
AVERAGE_2 = 1,
AVERAGE_4 = 2,
AVERAGE_8 = 3,
AVERAGE_16 = 4,
AVERAGE_32 = 5,
AVERAGE_64 = 6,
AVERAGE_128 = 7,
AVERAGE_256 = 8,
AVERAGE_512 = 9,
AVERAGE_1024 = 10,
_RESERVED_b = 11,
_RESERVED_c = 12,
_RESERVED_d = 13,
_RESERVED_e = 14,
_RESERVED_f = 15,
}Variants§
NO_AVERAGE = 0
Single conversion.
AVERAGE_2 = 1
2 conversions averaged.
AVERAGE_4 = 2
4 conversions averaged.
AVERAGE_8 = 3
8 conversions averaged.
AVERAGE_16 = 4
16 conversions averaged.
AVERAGE_32 = 5
32 conversions averaged.
AVERAGE_64 = 6
64 conversions averaged.
AVERAGE_128 = 7
128 conversions averaged.
AVERAGE_256 = 8
256 conversions averaged.
AVERAGE_512 = 9
512 conversions averaged.
AVERAGE_1024 = 10
1024 conversions averaged.
_RESERVED_b = 11
_RESERVED_c = 12
_RESERVED_d = 13
_RESERVED_e = 14
_RESERVED_f = 15
Implementations§
Trait Implementations§
Source§impl Ord for CalAvgs
impl Ord for CalAvgs
Source§impl PartialOrd for CalAvgs
impl PartialOrd for CalAvgs
impl Copy for CalAvgs
impl Eq for CalAvgs
impl StructuralPartialEq for CalAvgs
Auto Trait Implementations§
impl Freeze for CalAvgs
impl RefUnwindSafe for CalAvgs
impl Send for CalAvgs
impl Sync for CalAvgs
impl Unpin for CalAvgs
impl UnwindSafe for CalAvgs
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