Struct rp2040_pac2::uart::regs::Uartmis[][src]

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

Masked Interrupt Status Register, UARTMIS

Implementations

impl Uartmis[src][]

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

Overrun error masked interrupt status. Returns the masked interrupt state of the UARTOEINTR interrupt.

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

Overrun error masked interrupt status. Returns the masked interrupt state of the UARTOEINTR interrupt.

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

Break error masked interrupt status. Returns the masked interrupt state of the UARTBEINTR interrupt.

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

Break error masked interrupt status. Returns the masked interrupt state of the UARTBEINTR interrupt.

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

Parity error masked interrupt status. Returns the masked interrupt state of the UARTPEINTR interrupt.

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

Parity error masked interrupt status. Returns the masked interrupt state of the UARTPEINTR interrupt.

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

Framing error masked interrupt status. Returns the masked interrupt state of the UARTFEINTR interrupt.

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

Framing error masked interrupt status. Returns the masked interrupt state of the UARTFEINTR interrupt.

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

Receive timeout masked interrupt status. Returns the masked interrupt state of the UARTRTINTR interrupt.

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

Receive timeout masked interrupt status. Returns the masked interrupt state of the UARTRTINTR interrupt.

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

Transmit masked interrupt status. Returns the masked interrupt state of the UARTTXINTR interrupt.

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

Transmit masked interrupt status. Returns the masked interrupt state of the UARTTXINTR interrupt.

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

Receive masked interrupt status. Returns the masked interrupt state of the UARTRXINTR interrupt.

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

Receive masked interrupt status. Returns the masked interrupt state of the UARTRXINTR interrupt.

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

nUARTDSR modem masked interrupt status. Returns the masked interrupt state of the UARTDSRINTR interrupt.

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

nUARTDSR modem masked interrupt status. Returns the masked interrupt state of the UARTDSRINTR interrupt.

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

nUARTDCD modem masked interrupt status. Returns the masked interrupt state of the UARTDCDINTR interrupt.

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

nUARTDCD modem masked interrupt status. Returns the masked interrupt state of the UARTDCDINTR interrupt.

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

nUARTCTS modem masked interrupt status. Returns the masked interrupt state of the UARTCTSINTR interrupt.

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

nUARTCTS modem masked interrupt status. Returns the masked interrupt state of the UARTCTSINTR interrupt.

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

nUARTRI modem masked interrupt status. Returns the masked interrupt state of the UARTRIINTR interrupt.

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

nUARTRI modem masked interrupt status. Returns the masked interrupt state of the UARTRIINTR interrupt.

Trait Implementations

impl Clone for Uartmis[src][+]

impl Copy for Uartmis[src]

impl Default for Uartmis[src][+]

Auto Trait Implementations

impl Send for Uartmis

impl Sync for Uartmis

impl Unpin for Uartmis

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.