pub struct RunEnergyTrace {
pub energy: Vec<f64>,
pub healthy_mean: f64,
pub healthy_std: f64,
pub threshold: f64,
pub analyzable_feature_count: usize,
pub alarm: Vec<bool>,
}Fields§
§energy: Vec<f64>§healthy_mean: f64§healthy_std: f64§threshold: f64§analyzable_feature_count: usize§alarm: Vec<bool>Trait Implementations§
Source§impl Clone for RunEnergyTrace
impl Clone for RunEnergyTrace
Source§fn clone(&self) -> RunEnergyTrace
fn clone(&self) -> RunEnergyTrace
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 RunEnergyTrace
impl Debug for RunEnergyTrace
Auto Trait Implementations§
impl Freeze for RunEnergyTrace
impl RefUnwindSafe for RunEnergyTrace
impl Send for RunEnergyTrace
impl Sync for RunEnergyTrace
impl Unpin for RunEnergyTrace
impl UnsafeUnpin for RunEnergyTrace
impl UnwindSafe for RunEnergyTrace
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