pub struct TraceDiagnostic {
pub pattern_type: TracePattern,
pub tool_names: Vec<String>,
pub occurrence_count: usize,
pub description: String,
}Expand description
A detected trace inefficiency.
Fields§
§pattern_type: TracePatternType of inefficiency pattern detected.
tool_names: Vec<String>Tool names involved in the pattern.
occurrence_count: usizeNumber of times the pattern occurred.
description: StringHuman-readable description of the issue.
Trait Implementations§
Source§impl Clone for TraceDiagnostic
impl Clone for TraceDiagnostic
Source§fn clone(&self) -> TraceDiagnostic
fn clone(&self) -> TraceDiagnostic
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 TraceDiagnostic
impl Debug for TraceDiagnostic
Source§impl<'de> Deserialize<'de> for TraceDiagnostic
impl<'de> Deserialize<'de> for TraceDiagnostic
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
Auto Trait Implementations§
impl Freeze for TraceDiagnostic
impl RefUnwindSafe for TraceDiagnostic
impl Send for TraceDiagnostic
impl Sync for TraceDiagnostic
impl Unpin for TraceDiagnostic
impl UnsafeUnpin for TraceDiagnostic
impl UnwindSafe for TraceDiagnostic
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