Enum Mult
#[repr(u8)]pub enum Mult {
_00 = 0,
_01 = 1,
_10 = 2,
_11 = 3,
}Expand description
Multiplication Factor Select for Prescaler
Value on reset: 0
Variants§
_00 = 0
0: Multiplication factor is 1.
_01 = 1
1: Multiplication factor is 10.
_10 = 2
2: Multiplication factor is 20.
_11 = 3
3: Multiplication factor is 40.
Trait Implementations§
impl Copy for Mult
impl Eq for Mult
impl IsEnum for Mult
impl StructuralPartialEq for Mult
Auto Trait Implementations§
impl Freeze for Mult
impl RefUnwindSafe for Mult
impl Send for Mult
impl Sync for Mult
impl Unpin for Mult
impl UnwindSafe for Mult
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