#[repr(u8)]pub enum Prescaler1select {
Div2 = 0,
Div4 = 1,
Div8 = 2,
Div16 = 3,
Div32 = 4,
Div64 = 5,
Div128 = 6,
Div256 = 7,
}
Expand description
Debouncer Prescaler
Value on reset: 0
Variants§
Div2 = 0
0: EIC clock divided by 2
Div4 = 1
1: EIC clock divided by 4
Div8 = 2
2: EIC clock divided by 8
Div16 = 3
3: EIC clock divided by 16
Div32 = 4
4: EIC clock divided by 32
Div64 = 5
5: EIC clock divided by 64
Div128 = 6
6: EIC clock divided by 128
Div256 = 7
7: EIC clock divided by 256
Trait Implementations§
Source§impl Clone for Prescaler1select
impl Clone for Prescaler1select
Source§fn clone(&self) -> Prescaler1select
fn clone(&self) -> Prescaler1select
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for Prescaler1select
impl Debug for Prescaler1select
Source§impl From<Prescaler1select> for u8
impl From<Prescaler1select> for u8
Source§fn from(variant: Prescaler1select) -> Self
fn from(variant: Prescaler1select) -> Self
Converts to this type from the input type.
Source§impl PartialEq for Prescaler1select
impl PartialEq for Prescaler1select
impl Copy for Prescaler1select
impl Eq for Prescaler1select
impl IsEnum for Prescaler1select
impl StructuralPartialEq for Prescaler1select
Auto Trait Implementations§
impl Freeze for Prescaler1select
impl RefUnwindSafe for Prescaler1select
impl Send for Prescaler1select
impl Sync for Prescaler1select
impl Unpin for Prescaler1select
impl UnwindSafe for Prescaler1select
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