#[repr(u8)]pub enum AutocorrErrMask {
IRQENABLE = 0,
IRQDISABLE = 1,
}
Variants§
IRQENABLE = 0
Do not mask autocorrelation interrupt i.e. interrupt is generated
IRQDISABLE = 1
Mask autocorrelation interrupt i.e. no interrupt is generated
Implementations§
Trait Implementations§
Source§impl Clone for AutocorrErrMask
impl Clone for AutocorrErrMask
Source§fn clone(&self) -> AutocorrErrMask
fn clone(&self) -> AutocorrErrMask
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AutocorrErrMask
impl Debug for AutocorrErrMask
Source§impl From<AutocorrErrMask> for u8
impl From<AutocorrErrMask> for u8
Source§fn from(val: AutocorrErrMask) -> u8
fn from(val: AutocorrErrMask) -> u8
Converts to this type from the input type.
Source§impl From<u8> for AutocorrErrMask
impl From<u8> for AutocorrErrMask
Source§fn from(val: u8) -> AutocorrErrMask
fn from(val: u8) -> AutocorrErrMask
Converts to this type from the input type.
Source§impl Ord for AutocorrErrMask
impl Ord for AutocorrErrMask
Source§fn cmp(&self, other: &AutocorrErrMask) -> Ordering
fn cmp(&self, other: &AutocorrErrMask) -> 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 AutocorrErrMask
impl PartialEq for AutocorrErrMask
Source§impl PartialOrd for AutocorrErrMask
impl PartialOrd for AutocorrErrMask
impl Copy for AutocorrErrMask
impl Eq for AutocorrErrMask
impl StructuralPartialEq for AutocorrErrMask
Auto Trait Implementations§
impl Freeze for AutocorrErrMask
impl RefUnwindSafe for AutocorrErrMask
impl Send for AutocorrErrMask
impl Sync for AutocorrErrMask
impl Unpin for AutocorrErrMask
impl UnwindSafe for AutocorrErrMask
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