pub struct SignalStats {
pub mean: f64,
pub std_dev: f64,
pub relative_std: f64,
pub window_size: usize,
pub stability_method: String,
}Fields§
§mean: f64§std_dev: f64§relative_std: f64§window_size: usize§stability_method: StringTrait Implementations§
Source§impl Clone for SignalStats
impl Clone for SignalStats
Source§fn clone(&self) -> SignalStats
fn clone(&self) -> SignalStats
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 moreAuto Trait Implementations§
impl Freeze for SignalStats
impl RefUnwindSafe for SignalStats
impl Send for SignalStats
impl Sync for SignalStats
impl Unpin for SignalStats
impl UnwindSafe for SignalStats
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