pub enum TelemetryKind {
Parameter,
Signal,
Peak,
Event,
Violation,
}Expand description
Telemetry type identifier.
Variants§
Parameter
Parameter value telemetry.
Signal
Signal data (audio, sensor readings).
Peak
Peak value telemetry.
Event
Event telemetry.
Violation
Micro-control violation telemetry.
Trait Implementations§
Source§impl Clone for TelemetryKind
impl Clone for TelemetryKind
Source§fn clone(&self) -> TelemetryKind
fn clone(&self) -> TelemetryKind
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 TelemetryKind
impl Debug for TelemetryKind
Source§impl Display for TelemetryKind
impl Display for TelemetryKind
Source§impl Hash for TelemetryKind
impl Hash for TelemetryKind
Source§impl PartialEq for TelemetryKind
impl PartialEq for TelemetryKind
Source§fn eq(&self, other: &TelemetryKind) -> bool
fn eq(&self, other: &TelemetryKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for TelemetryKind
impl Eq for TelemetryKind
impl StructuralPartialEq for TelemetryKind
Auto Trait Implementations§
impl Freeze for TelemetryKind
impl RefUnwindSafe for TelemetryKind
impl Send for TelemetryKind
impl Sync for TelemetryKind
impl Unpin for TelemetryKind
impl UnsafeUnpin for TelemetryKind
impl UnwindSafe for TelemetryKind
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