#[repr(u8)]pub enum CalAvgs {
CAL_AVGS_0 = 0,
CAL_AVGS_1 = 1,
CAL_AVGS_2 = 2,
CAL_AVGS_3 = 3,
CAL_AVGS_4 = 4,
CAL_AVGS_5 = 5,
CAL_AVGS_6 = 6,
CAL_AVGS_7 = 7,
}Variants§
CAL_AVGS_0 = 0
Single conversion.
CAL_AVGS_1 = 1
2 conversions averaged.
CAL_AVGS_2 = 2
4 conversions averaged.
CAL_AVGS_3 = 3
8 conversions averaged.
CAL_AVGS_4 = 4
16 conversions averaged.
CAL_AVGS_5 = 5
32 conversions averaged.
CAL_AVGS_6 = 6
64 conversions averaged.
CAL_AVGS_7 = 7
128 conversions averaged.
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