pub struct TelemetryPoint {
pub ts_ms: u64,
pub key: String,
pub value: TelemetryValue,
pub unit: Option<String>,
pub tags: BTreeMap<String, String>,
}Fields§
§ts_ms: u64§key: String§value: TelemetryValue§unit: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for TelemetryPoint
impl Clone for TelemetryPoint
Source§fn clone(&self) -> TelemetryPoint
fn clone(&self) -> TelemetryPoint
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 TelemetryPoint
impl Debug for TelemetryPoint
Source§impl PartialEq for TelemetryPoint
impl PartialEq for TelemetryPoint
Source§fn eq(&self, other: &TelemetryPoint) -> bool
fn eq(&self, other: &TelemetryPoint) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TelemetryPoint
Auto Trait Implementations§
impl Freeze for TelemetryPoint
impl RefUnwindSafe for TelemetryPoint
impl Send for TelemetryPoint
impl Sync for TelemetryPoint
impl Unpin for TelemetryPoint
impl UnsafeUnpin for TelemetryPoint
impl UnwindSafe for TelemetryPoint
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