pub struct Status {
pub tx_empty: bool,
pub tx_complete: bool,
pub rx_full: bool,
pub idle: bool,
pub overrun: bool,
pub noise: bool,
pub framing: bool,
pub parity: bool,
}Expand description
LPUART status flags
Fields§
§tx_empty: boolTransmit data register empty
tx_complete: boolTransmission complete
rx_full: boolReceive data register full
idle: boolIdle line detected
overrun: boolReceiver overrun
noise: boolNoise error
framing: boolFraming error
parity: boolParity error
Trait Implementations§
impl Copy for Status
Auto Trait Implementations§
impl Freeze for Status
impl RefUnwindSafe for Status
impl Send for Status
impl Sync for Status
impl Unpin for Status
impl UnwindSafe for Status
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