Skip to main content

RecallCriticalFeatureRow

Struct RecallCriticalFeatureRow 

Source
pub struct RecallCriticalFeatureRow {
Show 21 fields pub failure_run_index: usize, pub feature_index: Option<usize>, pub feature_name: Option<String>, pub compression_rank: Option<usize>, pub recall_aware_rank: Option<usize>, pub max_structural_score: Option<f64>, pub resolved_alert_class: Option<String>, pub policy_state: Option<String>, pub boundary_density_w: Option<f64>, pub ewma_occupancy_w: Option<f64>, pub motif_recurrence_w: Option<f64>, pub fragmentation_proxy_w: Option<f64>, pub consistent: Option<bool>, pub exact_miss_rule: String, pub feature_override_exists: bool, pub rescue_priority: Option<usize>, pub allow_review_without_escalate: Option<bool>, pub bounded_feature_override_would_recover: bool, pub recovered_after_optimization: bool, pub optimized_feature_name: Option<String>, pub recall_rescue_contribution: f64,
}

Fields§

§failure_run_index: usize§feature_index: Option<usize>§feature_name: Option<String>§compression_rank: Option<usize>§recall_aware_rank: Option<usize>§max_structural_score: Option<f64>§resolved_alert_class: Option<String>§policy_state: Option<String>§boundary_density_w: Option<f64>§ewma_occupancy_w: Option<f64>§motif_recurrence_w: Option<f64>§fragmentation_proxy_w: Option<f64>§consistent: Option<bool>§exact_miss_rule: String§feature_override_exists: bool§rescue_priority: Option<usize>§allow_review_without_escalate: Option<bool>§bounded_feature_override_would_recover: bool§recovered_after_optimization: bool§optimized_feature_name: Option<String>§recall_rescue_contribution: f64

Trait Implementations§

Source§

impl Clone for RecallCriticalFeatureRow

Source§

fn clone(&self) -> RecallCriticalFeatureRow

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for RecallCriticalFeatureRow

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Serialize for RecallCriticalFeatureRow

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.