pub struct Reading {
pub timestamp: SystemTime,
pub current_temps_c: [f32; 4],
pub held_temps_c: [f32; 4],
pub hold_type: HoldType,
pub meter_temp_c: f32,
}Expand description
A reading from the Uni-T UT325F meter.
Fields§
§timestamp: SystemTime§current_temps_c: [f32; 4]§held_temps_c: [f32; 4]§hold_type: HoldType§meter_temp_c: f32Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Reading
impl RefUnwindSafe for Reading
impl Send for Reading
impl Sync for Reading
impl Unpin for Reading
impl UnsafeUnpin for Reading
impl UnwindSafe for Reading
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