pub enum NFR {
_0,
_1,
}Expand description
Possible values of the field NF
Variants§
_0
No noise detected since the last time this flag was cleared. If the receive buffer has a depth greater than 1 then there may be data in the receiver buffer that was received with noise.
_1
At least one dataword was received with noise detected since the last time the flag was cleared.
Implementations§
Source§impl NFR
impl NFR
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)
Trait Implementations§
impl Copy for NFR
impl StructuralPartialEq for NFR
Auto Trait Implementations§
impl Freeze for NFR
impl RefUnwindSafe for NFR
impl Send for NFR
impl Sync for NFR
impl Unpin for NFR
impl UnwindSafe for NFR
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