pub enum OVRDIS {
Enabled = 0,
Disabled = 1,
}
Expand description
Overrun Disable
Value on reset: 0
Variants§
Enabled = 0
0: Overrun Error Flag, ORE, is set when received data is not read before receiving new data
Disabled = 1
1: Overrun functionality is disabled. If new data is received while the RXNE flag is still set the ORE flag is not set and the new received data overwrites the previous content of the RDR register
Trait Implementations§
impl Copy for OVRDIS
impl Eq for OVRDIS
impl StructuralPartialEq for OVRDIS
Auto Trait Implementations§
impl Freeze for OVRDIS
impl RefUnwindSafe for OVRDIS
impl Send for OVRDIS
impl Sync for OVRDIS
impl Unpin for OVRDIS
impl UnwindSafe for OVRDIS
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