pub enum BMP280FilterCoefficient {
Off = 4,
Low = 8,
Medium = 12,
High = 16,
UltraHigh = 20,
}Expand description
Off = 1, Low = 2, Medium = 4, High = 8, UltraHigh = 16
Variants§
Trait Implementations§
Source§impl Clone for BMP280FilterCoefficient
impl Clone for BMP280FilterCoefficient
Source§fn clone(&self) -> BMP280FilterCoefficient
fn clone(&self) -> BMP280FilterCoefficient
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for BMP280FilterCoefficient
Auto Trait Implementations§
impl Freeze for BMP280FilterCoefficient
impl RefUnwindSafe for BMP280FilterCoefficient
impl Send for BMP280FilterCoefficient
impl Sync for BMP280FilterCoefficient
impl Unpin for BMP280FilterCoefficient
impl UnwindSafe for BMP280FilterCoefficient
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more