pub struct InsightCoverageV2 {
pub version: u16,
pub process_metrics: bool,
pub allocation_tracking: bool,
pub stage_concurrency: bool,
pub worker_occupancy: bool,
pub dropped_span_events: u64,
pub notes: Vec<String>,
}Expand description
Which measurements were available, so a missing number reads as a gap.
Fields§
§version: u16§process_metrics: bool§allocation_tracking: bool§stage_concurrency: bool§worker_occupancy: bool§dropped_span_events: u64§notes: Vec<String>Plain sentences naming each gap that weakens a conclusion above.
Trait Implementations§
Source§impl Clone for InsightCoverageV2
impl Clone for InsightCoverageV2
Source§fn clone(&self) -> InsightCoverageV2
fn clone(&self) -> InsightCoverageV2
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 InsightCoverageV2
impl Debug for InsightCoverageV2
Source§impl<'de> Deserialize<'de> for InsightCoverageV2
impl<'de> Deserialize<'de> for InsightCoverageV2
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for InsightCoverageV2
Source§impl PartialEq for InsightCoverageV2
impl PartialEq for InsightCoverageV2
Source§impl Serialize for InsightCoverageV2
impl Serialize for InsightCoverageV2
impl StructuralPartialEq for InsightCoverageV2
Auto Trait Implementations§
impl Freeze for InsightCoverageV2
impl RefUnwindSafe for InsightCoverageV2
impl Send for InsightCoverageV2
impl Sync for InsightCoverageV2
impl Unpin for InsightCoverageV2
impl UnsafeUnpin for InsightCoverageV2
impl UnwindSafe for InsightCoverageV2
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