pub struct Readings {
pub T: Result<f32, SensorError>,
pub pH: Result<f32, SensorError>,
pub ORP: Result<f32, SensorError>,
pub ec: Result<f32, SensorError>,
}Fields§
§T: Result<f32, SensorError>§pH: Result<f32, SensorError>§ORP: Result<f32, SensorError>§ec: Result<f32, SensorError>Trait Implementations§
Auto Trait Implementations§
impl Freeze for Readings
impl RefUnwindSafe for Readings
impl Send for Readings
impl Sync for Readings
impl Unpin for Readings
impl UnwindSafe for Readings
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