pub enum RXFRQR {
DISCARD,
_Reserved(bool),
}Expand description
Possible values of the field RXFRQ
Variants§
DISCARD
clears the RXNE flag. This allows to discard the received data without reading it, and avoid an overrun condition
_Reserved(bool)
Reserved
Implementations§
Source§impl RXFRQR
impl RXFRQR
Sourcepub fn bit_is_clear(&self) -> bool
pub fn bit_is_clear(&self) -> bool
Returns true if the bit is clear (0)
Sourcepub fn bit_is_set(&self) -> bool
pub fn bit_is_set(&self) -> bool
Returns true if the bit is set (1)
Sourcepub fn is_discard(&self) -> bool
pub fn is_discard(&self) -> bool
Checks if the value of the field is DISCARD
Trait Implementations§
impl Copy for RXFRQR
impl StructuralPartialEq for RXFRQR
Auto Trait Implementations§
impl Freeze for RXFRQR
impl RefUnwindSafe for RXFRQR
impl Send for RXFRQR
impl Sync for RXFRQR
impl Unpin for RXFRQR
impl UnwindSafe for RXFRQR
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