pub struct TelemetryReading {
pub value: f64,
pub timestamp_ms: i64,
pub quality: Option<String>,
}Expand description
Single sensor telemetry reading.
Fields§
§value: f64§timestamp_ms: i64§quality: Option<String>Trait Implementations§
Source§impl Clone for TelemetryReading
impl Clone for TelemetryReading
Source§fn clone(&self) -> TelemetryReading
fn clone(&self) -> TelemetryReading
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 moreSource§impl Debug for TelemetryReading
impl Debug for TelemetryReading
Source§impl<'de> Deserialize<'de> for TelemetryReading
impl<'de> Deserialize<'de> for TelemetryReading
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for TelemetryReading
impl RefUnwindSafe for TelemetryReading
impl Send for TelemetryReading
impl Sync for TelemetryReading
impl Unpin for TelemetryReading
impl UnsafeUnpin for TelemetryReading
impl UnwindSafe for TelemetryReading
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