#[repr(u8)]pub enum Frr {
RESTART = 0,
FREE_RUN = 1,
}Variants§
RESTART = 0
Restart mode. After a compare event, the counter resets to 0x0000_0000 and resumes counting.
FREE_RUN = 1
Free-Run mode. After a compare event, the counter continues counting until 0xFFFF_FFFF and then rolls over to 0.
Implementations§
Trait Implementations§
Source§impl Ord for Frr
impl Ord for Frr
Source§impl PartialOrd for Frr
impl PartialOrd for Frr
impl Copy for Frr
impl Eq for Frr
impl StructuralPartialEq for Frr
Auto Trait Implementations§
impl Freeze for Frr
impl RefUnwindSafe for Frr
impl Send for Frr
impl Sync for Frr
impl Unpin for Frr
impl UnwindSafe for Frr
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