[][src]Enum hts221::AvgT

#[repr(u8)]
pub enum AvgT {
    Avg2,
    Avg4,
    Avg8,
    Avg16,
    Avg32,
    Avg64,
    Avg128,
    Avg256,
}

Values for temperature configuration. Selects the number of internal temperature samples averaged into one sample.

Variants

Avg2
Avg4
Avg8
Avg16
Avg32
Avg64
Avg128
Avg256

Trait Implementations

impl Clone for AvgT[src]

impl Copy for AvgT[src]

impl Debug for AvgT[src]

impl Eq for AvgT[src]

impl PartialEq<AvgT> for AvgT[src]

impl StructuralEq for AvgT[src]

impl StructuralPartialEq for AvgT[src]

Auto Trait Implementations

impl RefUnwindSafe for AvgT

impl Send for AvgT

impl Sync for AvgT

impl Unpin for AvgT

impl UnwindSafe for AvgT

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.