pub struct Ds18b20ResultData {
pub value: f32,
invalid: bool,
measurement_instant: Instant,
}Fields§
§value: f32§invalid: bool§measurement_instant: InstantImplementations§
Trait Implementations§
Source§impl Clone for Ds18b20ResultData
impl Clone for Ds18b20ResultData
Source§fn clone(&self) -> Ds18b20ResultData
fn clone(&self) -> Ds18b20ResultData
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 Ds18b20ResultData
impl RefUnwindSafe for Ds18b20ResultData
impl Send for Ds18b20ResultData
impl Sync for Ds18b20ResultData
impl Unpin for Ds18b20ResultData
impl UnwindSafe for Ds18b20ResultData
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