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

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

Raw interrupt status register, SSPRIS on page 3-10

Implementations

impl Sspris[src]

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

Gives the raw interrupt state, prior to masking, of the SSPTXINTR interrupt

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

Gives the raw interrupt state, prior to masking, of the SSPTXINTR interrupt

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

Gives the raw interrupt state, prior to masking, of the SSPRXINTR interrupt

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

Gives the raw interrupt state, prior to masking, of the SSPRXINTR interrupt

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

Gives the raw interrupt state, prior to masking, of the SSPRTINTR interrupt

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

Gives the raw interrupt state, prior to masking, of the SSPRTINTR interrupt

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

Gives the raw interrupt state, prior to masking, of the SSPRORINTR interrupt

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

Gives the raw interrupt state, prior to masking, of the SSPRORINTR interrupt

Trait Implementations

impl Clone for Sspris[src]

impl Copy for Sspris[src]

impl Default for Sspris[src]

Auto Trait Implementations

impl Send for Sspris

impl Sync for Sspris

impl Unpin for Sspris

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.