Struct rp2040_pac2::spi::regs::Sspmis[][src]

#[repr(transparent)]pub struct Sspmis(pub u32);

Masked interrupt status register, SSPMIS on page 3-11

Implementations

impl Sspmis[src]

pub const fn txmis(&self) -> bool[src]

Gives the transmit FIFO masked interrupt state, after masking, of the SSPTXINTR interrupt

pub fn set_txmis(&mut self, val: bool)[src]

Gives the transmit FIFO masked interrupt state, after masking, of the SSPTXINTR interrupt

pub const fn rxmis(&self) -> bool[src]

Gives the receive FIFO masked interrupt state, after masking, of the SSPRXINTR interrupt

pub fn set_rxmis(&mut self, val: bool)[src]

Gives the receive FIFO masked interrupt state, after masking, of the SSPRXINTR interrupt

pub const fn rtmis(&self) -> bool[src]

Gives the receive timeout masked interrupt state, after masking, of the SSPRTINTR interrupt

pub fn set_rtmis(&mut self, val: bool)[src]

Gives the receive timeout masked interrupt state, after masking, of the SSPRTINTR interrupt

pub const fn rormis(&self) -> bool[src]

Gives the receive over run masked interrupt status, after masking, of the SSPRORINTR interrupt

pub fn set_rormis(&mut self, val: bool)[src]

Gives the receive over run masked interrupt status, after masking, of the SSPRORINTR interrupt

Trait Implementations

impl Clone for Sspmis[src]

impl Copy for Sspmis[src]

impl Default for Sspmis[src]

Auto Trait Implementations

impl Send for Sspmis

impl Sync for Sspmis

impl Unpin for Sspmis

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.