pub struct PcaFdcTrace {Show 14 fields
pub t2: Vec<f64>,
pub spe: Vec<f64>,
pub t2_healthy_mean: f64,
pub t2_healthy_std: f64,
pub spe_healthy_mean: f64,
pub spe_healthy_std: f64,
pub t2_threshold: f64,
pub spe_threshold: f64,
pub analyzable_feature_count: usize,
pub healthy_observation_count: usize,
pub retained_components: usize,
pub explained_variance_fraction: f64,
pub target_variance_explained: f64,
pub alarm: Vec<bool>,
}Fields§
§t2: Vec<f64>§spe: Vec<f64>§t2_healthy_mean: f64§t2_healthy_std: f64§spe_healthy_mean: f64§spe_healthy_std: f64§t2_threshold: f64§spe_threshold: f64§analyzable_feature_count: usize§healthy_observation_count: usize§retained_components: usize§explained_variance_fraction: f64§target_variance_explained: f64§alarm: Vec<bool>Trait Implementations§
Source§impl Clone for PcaFdcTrace
impl Clone for PcaFdcTrace
Source§fn clone(&self) -> PcaFdcTrace
fn clone(&self) -> PcaFdcTrace
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 PcaFdcTrace
impl Debug for PcaFdcTrace
Auto Trait Implementations§
impl Freeze for PcaFdcTrace
impl RefUnwindSafe for PcaFdcTrace
impl Send for PcaFdcTrace
impl Sync for PcaFdcTrace
impl Unpin for PcaFdcTrace
impl UnsafeUnpin for PcaFdcTrace
impl UnwindSafe for PcaFdcTrace
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