#[repr(u8)]pub enum InterruptDataReady {
Enabled = 8,
Disabled = 0,
}
Expand description
Interrupt Mode
Variants§
Enabled = 8
Assert nINT when data is available in ALG_RESULT_DATA
Disabled = 0
Interrupt generation is disabled
Trait Implementations§
Source§impl Clone for InterruptDataReady
impl Clone for InterruptDataReady
Source§fn clone(&self) -> InterruptDataReady
fn clone(&self) -> InterruptDataReady
Returns a copy 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 InterruptDataReady
impl Debug for InterruptDataReady
Source§impl PartialEq for InterruptDataReady
impl PartialEq for InterruptDataReady
impl Copy for InterruptDataReady
impl StructuralPartialEq for InterruptDataReady
Auto Trait Implementations§
impl Freeze for InterruptDataReady
impl RefUnwindSafe for InterruptDataReady
impl Send for InterruptDataReady
impl Sync for InterruptDataReady
impl Unpin for InterruptDataReady
impl UnwindSafe for InterruptDataReady
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