pub struct RealTimeData {
pub probe_temperatures: Vec<Option<f32>>,
}Expand description
A data point from a BBQ device, giving the temperature of all connected probes.
Fields§
§probe_temperatures: Vec<Option<f32>>The current temperature of each probe in degrees Celcius, or None if the probe is disconnected.
Trait Implementations§
Source§impl Clone for RealTimeData
impl Clone for RealTimeData
Source§fn clone(&self) -> RealTimeData
fn clone(&self) -> RealTimeData
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RealTimeData
impl Debug for RealTimeData
Source§impl PartialEq for RealTimeData
impl PartialEq for RealTimeData
Source§fn eq(&self, other: &RealTimeData) -> bool
fn eq(&self, other: &RealTimeData) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RealTimeData
Auto Trait Implementations§
impl Freeze for RealTimeData
impl RefUnwindSafe for RealTimeData
impl Send for RealTimeData
impl Sync for RealTimeData
impl Unpin for RealTimeData
impl UnsafeUnpin for RealTimeData
impl UnwindSafe for RealTimeData
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