pub struct BMP280Settings {
pub compensation: BMP280CompensationAlgorithm,
pub t_sb: BMP280Timing,
pub iir_filter_coeff: BMP280FilterCoefficient,
pub osrs_t: BMP280TemperatureOversampling,
pub osrs_p: BMP280PressureOversampling,
pub power_mode: BMP280PowerMode,
}Expand description
Fields§
§compensation: BMP280CompensationAlgorithm§t_sb: BMP280Timing§iir_filter_coeff: BMP280FilterCoefficient§osrs_t: BMP280TemperatureOversampling§osrs_p: BMP280PressureOversampling§power_mode: BMP280PowerModeTrait Implementations§
Source§impl Clone for BMP280Settings
impl Clone for BMP280Settings
Source§fn clone(&self) -> BMP280Settings
fn clone(&self) -> BMP280Settings
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for BMP280Settings
Auto Trait Implementations§
impl Freeze for BMP280Settings
impl RefUnwindSafe for BMP280Settings
impl Send for BMP280Settings
impl Sync for BMP280Settings
impl Unpin for BMP280Settings
impl UnsafeUnpin for BMP280Settings
impl UnwindSafe for BMP280Settings
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