pub struct RootCauseAnalysis {
pub root_cause: String,
pub why_fix_fails: String,
pub evidence: Vec<String>,
pub confidence: f64,
}Expand description
Root cause analysis for why a loop persists.
Fields§
§root_cause: StringThe actual root cause.
why_fix_fails: StringWhy the repeated fix doesn’t work.
evidence: Vec<String>Evidence for this analysis.
confidence: f64Confidence in analysis (0.0-1.0).
Trait Implementations§
Source§impl Clone for RootCauseAnalysis
impl Clone for RootCauseAnalysis
Source§fn clone(&self) -> RootCauseAnalysis
fn clone(&self) -> RootCauseAnalysis
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 RootCauseAnalysis
impl Debug for RootCauseAnalysis
Source§impl<'de> Deserialize<'de> for RootCauseAnalysis
impl<'de> Deserialize<'de> for RootCauseAnalysis
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 RootCauseAnalysis
impl RefUnwindSafe for RootCauseAnalysis
impl Send for RootCauseAnalysis
impl Sync for RootCauseAnalysis
impl Unpin for RootCauseAnalysis
impl UnsafeUnpin for RootCauseAnalysis
impl UnwindSafe for RootCauseAnalysis
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