[][src]Enum stm32h7xx_hal::adc::AdcSampleTime

pub enum AdcSampleTime {
    T_1,
    T_2,
    T_8,
    T_16,
    T_32,
    T_64,
    T_387,
    T_810,
}

ADC sampling time

Options for the sampling time, each is T + 0.5 ADC clock cycles.

Variants

T_1

1.5 cycles sampling time

T_2

2.5 cycles sampling time

T_8

8.5 cycles sampling time

T_16

16.5 cycles sampling time

T_32

32.5 cycles sampling time

T_64

64.5 cycles sampling time

T_387

387.5 cycles sampling time

T_810

810.5 cycles sampling time

Methods

impl AdcSampleTime[src]

pub fn default() -> Self[src]

Trait Implementations

impl From<AdcSampleTime> for u8[src]

impl Debug for AdcSampleTime[src]

impl PartialEq<AdcSampleTime> for AdcSampleTime[src]

impl Copy for AdcSampleTime[src]

impl Clone for AdcSampleTime[src]

Auto Trait Implementations

Blanket Implementations

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

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> Into<U> for T where
    U: From<T>, 
[src]

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.

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self