[][src]Enum adxl313::OutputDataRate

pub enum OutputDataRate {
    ODR_3200_HZ,
    ODR_1600_HZ,
    ODR_800_HZ,
    ODR_400_HZ,
    ODR_200_HZ,
    ODR_100_HZ,
    ODR_50_HZ,
    ODR_25_HZ,
    ODR_12d5_HZ,
    ODR_6d25_HZ,
}

Output data rate (odr) and Low pass filter corner frequency (lpf)

Variants

ODR_3200_HZ

odr = 3200 Hz and lpf = 1600 Hz

ODR_1600_HZ

odr = 1600 Hz and lpf = 800 Hz

ODR_800_HZ

odr = 800 Hz and lpf = 400 Hz

ODR_400_HZ

odr = 400 Hz and lpf = 200 Hz

ODR_200_HZ

odr = 200 Hz and lpf = 100 Hz

ODR_100_HZ

odr = 100 Hz and lpf = 50 Hz

ODR_50_HZ

odr = 50 Hz and lpf = 25 Hz

ODR_25_HZ

odr = 25 Hz and lpf = 12.5 Hz

ODR_12d5_HZ

odr = 12.5 Hz and lpf = 6.25 Hz

ODR_6d25_HZ

odr = 6.25 Hz and lpf = 3.125 Hz

Implementations

impl OutputDataRate[src]

pub fn val(self) -> u8[src]

Trait Implementations

impl Clone for OutputDataRate[src]

impl Copy for OutputDataRate[src]

impl Debug for OutputDataRate[src]

impl Default for OutputDataRate[src]

impl From<OutputDataRate> for f32[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.