[][src]Enum bmp085_driver::Oversampling

pub enum Oversampling {
    UltraLowPower,
    Standard,
    HighResolution,
    UltraHighResolution,
}

Oversampling modes

Variants

UltraLowPower

Number of samples 1, conversion time max 4.5ms, average current 3µA

Standard

Number of samples 2, conversion time max 7.5ms, average current 5µA

HighResolution

Number of samples 4, conversion time max 13.5ms, average current 7µA

UltraHighResolution

Number of samples 8, conversion time max. 22.5ms, average current 12µA

Trait Implementations

impl Copy for Oversampling
[src]

impl Clone for Oversampling
[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

impl<T> Same for T

type Output = T

Should always be Self