pub struct MissedFailureRootCause {
pub failure_id: usize,
pub feature_activity: Vec<MissedFailureFeatureActivity>,
pub residual_trajectory: Vec<f64>,
pub drift_trajectory: Vec<f64>,
pub slew_trajectory: Vec<f64>,
pub motif_presence: Vec<String>,
pub grammar_state: Vec<String>,
pub reason_for_miss: String,
pub classification: String,
pub recovered_after_fix: bool,
pub recovery_feature: Option<String>,
pub recovery_note: String,
}Fields§
§failure_id: usize§feature_activity: Vec<MissedFailureFeatureActivity>§residual_trajectory: Vec<f64>§drift_trajectory: Vec<f64>§slew_trajectory: Vec<f64>§motif_presence: Vec<String>§grammar_state: Vec<String>§reason_for_miss: String§classification: String§recovered_after_fix: bool§recovery_feature: Option<String>§recovery_note: StringTrait Implementations§
Source§impl Clone for MissedFailureRootCause
impl Clone for MissedFailureRootCause
Source§fn clone(&self) -> MissedFailureRootCause
fn clone(&self) -> MissedFailureRootCause
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 MissedFailureRootCause
impl Debug for MissedFailureRootCause
Auto Trait Implementations§
impl Freeze for MissedFailureRootCause
impl RefUnwindSafe for MissedFailureRootCause
impl Send for MissedFailureRootCause
impl Sync for MissedFailureRootCause
impl Unpin for MissedFailureRootCause
impl UnsafeUnpin for MissedFailureRootCause
impl UnwindSafe for MissedFailureRootCause
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