[][src]Enum l3gd20::Bandwidth

pub enum Bandwidth {
    Low,
    Medium,
    High,
    Maximum,
}

Bandwidth of sensor

The bandwidth of the sensor is equal to the cut-off for the low-pass filter. The cut-off depends on the Odr of the sensor, for specific information consult the data sheet.

Variants

Low

Lowest possible cut-off for any Odr configuration

Medium

Medium cut-off, can be the same as High for some Odr configurations

High

High cut-off

Maximum

Maximum cut-off for any Odr configuration

Trait Implementations

impl Clone for Bandwidth[src]

impl Copy for Bandwidth[src]

impl Debug for Bandwidth[src]

Auto Trait Implementations

impl Send for Bandwidth

impl Sync for Bandwidth

impl Unpin for Bandwidth

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, 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.