#[repr(u8)]pub enum Avgs {
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 Avgs
impl Ord for Avgs
Source§impl PartialOrd for Avgs
impl PartialOrd for Avgs
impl Copy for Avgs
impl Eq for Avgs
impl StructuralPartialEq for Avgs
Auto Trait Implementations§
impl Freeze for Avgs
impl RefUnwindSafe for Avgs
impl Send for Avgs
impl Sync for Avgs
impl Unpin for Avgs
impl UnwindSafe for Avgs
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