Enum Adcdiv
#[repr(u8)]pub enum Adcdiv {
DIV2 = 0,
DIV4 = 1,
DIV6 = 2,
DIV8 = 3,
}
Variants§
DIV2 = 0
PCLK divided by 2
DIV4 = 1
PCLK divided by 4
DIV6 = 2
PCLK divided by 6
DIV8 = 3
PCLK divided by 8
Implementations§
Trait Implementations§
§impl Ord for Adcdiv
impl Ord for Adcdiv
§impl PartialOrd for Adcdiv
impl PartialOrd for Adcdiv
impl Copy for Adcdiv
impl Eq for Adcdiv
impl StructuralPartialEq for Adcdiv
Auto Trait Implementations§
impl Freeze for Adcdiv
impl RefUnwindSafe for Adcdiv
impl Send for Adcdiv
impl Sync for Adcdiv
impl Unpin for Adcdiv
impl UnwindSafe for Adcdiv
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