pub struct BME280Response {
pub humidity: f32,
pub temperature: f32,
pub pressure: f32,
}Fields§
§humidity: f32§temperature: f32§pressure: f32Trait Implementations§
Source§impl Clone for BME280Response
impl Clone for BME280Response
Source§fn clone(&self) -> BME280Response
fn clone(&self) -> BME280Response
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 moreAuto Trait Implementations§
impl Freeze for BME280Response
impl RefUnwindSafe for BME280Response
impl Send for BME280Response
impl Sync for BME280Response
impl Unpin for BME280Response
impl UnwindSafe for BME280Response
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