[][src]Enum stm32f3xx_hal_v2::stm32::rcc::cfgr2::ADC12PRES_A

#[repr(u8)]pub enum ADC12PRES_A {
    NOCLOCK,
    DIV1,
    DIV2,
    DIV4,
    DIV6,
    DIV8,
    DIV10,
    DIV12,
    DIV16,
    DIV32,
    DIV64,
    DIV128,
    DIV256,
}

ADC1 and ADC2 prescaler

Value on reset: 0

Variants

NOCLOCK

0: No clock

DIV1

16: PLL clock not divided

DIV2

17: PLL clock divided by 2

DIV4

18: PLL clock divided by 4

DIV6

19: PLL clock divided by 6

DIV8

20: PLL clock divided by 8

DIV10

21: PLL clock divided by 10

DIV12

22: PLL clock divided by 12

DIV16

23: PLL clock divided by 16

DIV32

24: PLL clock divided by 32

DIV64

25: PLL clock divided by 64

DIV128

26: PLL clock divided by 128

DIV256

27: PLL clock divided by 256

Trait Implementations

impl Clone for ADC12PRES_A[src]

impl Copy for ADC12PRES_A[src]

impl Debug for ADC12PRES_A[src]

impl PartialEq<ADC12PRES_A> for ADC12PRES_A[src]

impl StructuralPartialEq for ADC12PRES_A[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.