pub struct TelemetryRecord {
pub name: String,
pub help: &'static str,
pub kind: TelemetryMetricKind,
pub value: f64,
pub labels: Vec<(String, String)>,
}Fields§
§name: String§help: &'static str§kind: TelemetryMetricKind§value: f64§labels: Vec<(String, String)>Trait Implementations§
Source§impl Clone for TelemetryRecord
impl Clone for TelemetryRecord
Source§fn clone(&self) -> TelemetryRecord
fn clone(&self) -> TelemetryRecord
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 TelemetryRecord
impl Debug for TelemetryRecord
Source§impl PartialEq for TelemetryRecord
impl PartialEq for TelemetryRecord
impl StructuralPartialEq for TelemetryRecord
Auto Trait Implementations§
impl Freeze for TelemetryRecord
impl RefUnwindSafe for TelemetryRecord
impl Send for TelemetryRecord
impl Sync for TelemetryRecord
impl Unpin for TelemetryRecord
impl UnsafeUnpin for TelemetryRecord
impl UnwindSafe for TelemetryRecord
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