pub struct RawData {
pub source_id: u32,
pub timestamp: u64,
pub value: f64,
}Expand description
Raw data from a sensor or source
Fields§
§source_id: u32Unique identifier for the data source
timestamp: u64Timestamp (relative or absolute)
value: f64The measured value
Implementations§
Trait Implementations§
impl StructuralPartialEq for RawData
Auto Trait Implementations§
impl Freeze for RawData
impl RefUnwindSafe for RawData
impl Send for RawData
impl Sync for RawData
impl Unpin for RawData
impl UnsafeUnpin for RawData
impl UnwindSafe for RawData
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