pub enum BMP280CompensationAlgorithm {
B32,
B64,
Float,
}
Expand description
Algorithm to process measurements. Float is significantly more expensive.
Variants§
Trait Implementations§
Source§impl Clone for BMP280CompensationAlgorithm
impl Clone for BMP280CompensationAlgorithm
Source§fn clone(&self) -> BMP280CompensationAlgorithm
fn clone(&self) -> BMP280CompensationAlgorithm
Returns a copy 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 BMP280CompensationAlgorithm
Auto Trait Implementations§
impl Freeze for BMP280CompensationAlgorithm
impl RefUnwindSafe for BMP280CompensationAlgorithm
impl Send for BMP280CompensationAlgorithm
impl Sync for BMP280CompensationAlgorithm
impl Unpin for BMP280CompensationAlgorithm
impl UnwindSafe for BMP280CompensationAlgorithm
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