Enum Adiv
#[repr(u8)]pub enum Adiv {
_00 = 0,
_01 = 1,
_10 = 2,
_11 = 3,
}Expand description
Clock Divide Select
Value on reset: 0
Variants§
_00 = 0
0: The divide ratio is 1 and the clock rate is input clock.
_01 = 1
1: The divide ratio is 2 and the clock rate is (input clock)/2.
_10 = 2
2: The divide ratio is 4 and the clock rate is (input clock)/4.
_11 = 3
3: The divide ratio is 8 and the clock rate is (input clock)/8.
Trait Implementations§
impl Copy for Adiv
impl Eq for Adiv
impl IsEnum for Adiv
impl StructuralPartialEq for Adiv
Auto Trait Implementations§
impl Freeze for Adiv
impl RefUnwindSafe for Adiv
impl Send for Adiv
impl Sync for Adiv
impl Unpin for Adiv
impl UnwindSafe for Adiv
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