pub struct InterruptStatus {
pub power_ready: bool,
pub fifo_almost_full: bool,
pub new_fifo_data_ready: bool,
pub alc_overflow: bool,
pub temperature_ready: bool,
}
Expand description
Interrupt status flags
Fields§
§power_ready: bool
Power ready interrupt
fifo_almost_full: bool
FIFO almost full interrupt
new_fifo_data_ready: bool
New FIFO data ready interrupt
alc_overflow: bool
Ambient light cancellation overflow interrupt
temperature_ready: bool
Internal die temperature conversion ready interrupt
Trait Implementations§
Source§impl Clone for InterruptStatus
impl Clone for InterruptStatus
Source§fn clone(&self) -> InterruptStatus
fn clone(&self) -> InterruptStatus
Returns a duplicate 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 InterruptStatus
impl Debug for InterruptStatus
impl Copy for InterruptStatus
Auto Trait Implementations§
impl Freeze for InterruptStatus
impl RefUnwindSafe for InterruptStatus
impl Send for InterruptStatus
impl Sync for InterruptStatus
impl Unpin for InterruptStatus
impl UnwindSafe for InterruptStatus
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