pub struct StreamDataElement {
pub custom_data: Option<CustomData>,
pub t: f64,
pub v: String<2500usize>,
}Fields§
§custom_data: Option<CustomData>§t: f64Offset relative to basetime of this message. basetime + t is timestamp of recorded value.
v: String<2500usize>Trait Implementations§
Source§impl Clone for StreamDataElement
impl Clone for StreamDataElement
Source§fn clone(&self) -> StreamDataElement
fn clone(&self) -> StreamDataElement
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 StreamDataElement
impl Debug for StreamDataElement
Source§impl PartialEq for StreamDataElement
impl PartialEq for StreamDataElement
impl StructuralPartialEq for StreamDataElement
Auto Trait Implementations§
impl Freeze for StreamDataElement
impl RefUnwindSafe for StreamDataElement
impl Send for StreamDataElement
impl Sync for StreamDataElement
impl Unpin for StreamDataElement
impl UnsafeUnpin for StreamDataElement
impl UnwindSafe for StreamDataElement
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