#[repr(transparent)]pub struct Intenclr(pub u32);Expand description
SPI Interrupt Enable Clear. Writing a 1 to any implemented bit position causes the corresponding bit in INTENSET to be cleared.
Tuple Fields§
§0: u32Implementations§
Source§impl Intenclr
impl Intenclr
Sourcepub const fn ssaen(&self) -> bool
pub const fn ssaen(&self) -> bool
Writing 1 clears the corresponding bit in the INTENSET register.
Sourcepub const fn set_ssaen(&mut self, val: bool)
pub const fn set_ssaen(&mut self, val: bool)
Writing 1 clears the corresponding bit in the INTENSET register.
Sourcepub const fn ssden(&self) -> bool
pub const fn ssden(&self) -> bool
Writing 1 clears the corresponding bit in the INTENSET register.
Sourcepub const fn set_ssden(&mut self, val: bool)
pub const fn set_ssden(&mut self, val: bool)
Writing 1 clears the corresponding bit in the INTENSET register.
Sourcepub const fn mstidle(&self) -> bool
pub const fn mstidle(&self) -> bool
Writing 1 clears the corresponding bit in the INTENSET register.
Sourcepub const fn set_mstidle(&mut self, val: bool)
pub const fn set_mstidle(&mut self, val: bool)
Writing 1 clears the corresponding bit in the INTENSET register.
Trait Implementations§
impl Copy for Intenclr
impl Eq for Intenclr
impl StructuralPartialEq for Intenclr
Auto Trait Implementations§
impl Freeze for Intenclr
impl RefUnwindSafe for Intenclr
impl Send for Intenclr
impl Sync for Intenclr
impl Unpin for Intenclr
impl UnwindSafe for Intenclr
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