pub struct DaccInterrupts {
pub txrdy: bool,
pub eoc: bool,
pub endtx: bool,
pub txbufe: bool,
}Expand description
Wrapper struct for DACC interrupts.
A brief description of each interrupt is as follows:
txrdy: Transmit readyeoc: End of conversionendtx: End of transmit buffertxbufe: Transmit buffer empty
Fields§
§txrdy: bool§eoc: bool§endtx: bool§txbufe: boolTrait Implementations§
Source§impl Clone for DaccInterrupts
impl Clone for DaccInterrupts
Source§fn clone(&self) -> DaccInterrupts
fn clone(&self) -> DaccInterrupts
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 DaccInterrupts
impl Debug for DaccInterrupts
impl Copy for DaccInterrupts
Auto Trait Implementations§
impl Freeze for DaccInterrupts
impl RefUnwindSafe for DaccInterrupts
impl Send for DaccInterrupts
impl Sync for DaccInterrupts
impl Unpin for DaccInterrupts
impl UnwindSafe for DaccInterrupts
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