pub enum CONT {
SingleShot = 0,
Continuous = 1,
}
Expand description
Master Continuous mode
Value on reset: 0
Variants§
SingleShot = 0
0: The timer operates in single-shot mode and stops when it reaches the MPER value
Continuous = 1
1: The timer operates in continuous (free-running) mode and rolls over to zero when it reaches the MPER value
Trait Implementations§
impl Copy for CONT
impl Eq for CONT
impl StructuralPartialEq for CONT
Auto Trait Implementations§
impl Freeze for CONT
impl RefUnwindSafe for CONT
impl Send for CONT
impl Sync for CONT
impl Unpin for CONT
impl UnwindSafe for CONT
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