pub enum BMP280TemperatureOversampling {
Off = 0,
x1 = 32,
x2 = 64,
x4 = 96,
x8 = 128,
x16 = 160,
}Expand description
×1: 16 bit / 0.0050 °C ×2: 17 bit / 0.0025 °C ×4: 18 bit / 0.0012 °C ×8: 19 bit / 0.0006 °C ×16: 20 bit / 0.0003 °C
Recommended: 1x for all UltraLowPower->HighResolution 2x for UltraHighResolution
Variants§
Trait Implementations§
Source§impl Clone for BMP280TemperatureOversampling
impl Clone for BMP280TemperatureOversampling
Source§fn clone(&self) -> BMP280TemperatureOversampling
fn clone(&self) -> BMP280TemperatureOversampling
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 BMP280TemperatureOversampling
Auto Trait Implementations§
impl Freeze for BMP280TemperatureOversampling
impl RefUnwindSafe for BMP280TemperatureOversampling
impl Send for BMP280TemperatureOversampling
impl Sync for BMP280TemperatureOversampling
impl Unpin for BMP280TemperatureOversampling
impl UnwindSafe for BMP280TemperatureOversampling
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