pub struct CubeTelemetryRow {Show 13 fields
pub row_ix: usize,
pub case_id: String,
pub item_id: String,
pub test_name: String,
pub action_ix: Option<usize>,
pub scope: TelemetryScope,
pub name: String,
pub kind: &'static str,
pub unit: Option<String>,
pub value: Option<Number>,
pub values: Option<Vec<Number>>,
pub tag_value: Option<String>,
pub canonical: bool,
}Fields§
§row_ix: usize§case_id: String§item_id: String§test_name: String§action_ix: Option<usize>§scope: TelemetryScope§name: String§kind: &'static str§unit: Option<String>§value: Option<Number>§values: Option<Vec<Number>>§tag_value: Option<String>§canonical: boolTrait Implementations§
Source§impl Clone for CubeTelemetryRow
impl Clone for CubeTelemetryRow
Source§fn clone(&self) -> CubeTelemetryRow
fn clone(&self) -> CubeTelemetryRow
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 CubeTelemetryRow
impl Debug for CubeTelemetryRow
Source§impl PartialEq for CubeTelemetryRow
impl PartialEq for CubeTelemetryRow
Source§impl Serialize for CubeTelemetryRow
impl Serialize for CubeTelemetryRow
impl StructuralPartialEq for CubeTelemetryRow
Auto Trait Implementations§
impl Freeze for CubeTelemetryRow
impl RefUnwindSafe for CubeTelemetryRow
impl Send for CubeTelemetryRow
impl Sync for CubeTelemetryRow
impl Unpin for CubeTelemetryRow
impl UnsafeUnpin for CubeTelemetryRow
impl UnwindSafe for CubeTelemetryRow
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