Enum Prescale
#[repr(u8)]pub enum Prescale {
_000 = 0,
_001 = 1,
_010 = 2,
_011 = 3,
_100 = 4,
_101 = 5,
_110 = 6,
_111 = 7,
}Expand description
Prescaler Value
Value on reset: 0
Variants§
_000 = 0
0: Divide by 1.
_001 = 1
1: Divide by 2.
_010 = 2
2: Divide by 4.
_011 = 3
3: Divide by 8.
_100 = 4
4: Divide by 16.
_101 = 5
5: Divide by 32.
_110 = 6
6: Divide by 64.
_111 = 7
7: Divide by 128.
Trait Implementations§
impl Copy for Prescale
impl Eq for Prescale
impl IsEnum for Prescale
impl StructuralPartialEq for Prescale
Auto Trait Implementations§
impl Freeze for Prescale
impl RefUnwindSafe for Prescale
impl Send for Prescale
impl Sync for Prescale
impl Unpin for Prescale
impl UnwindSafe for Prescale
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