pub struct LoggableSignalStats {
pub mean: f64,
pub std_dev: f64,
pub relative_std: f64,
pub window_size: usize,
pub stability_method: String,
}Expand description
JSON-serializable version of SignalStats
Fields§
§mean: f64§std_dev: f64§relative_std: f64§window_size: usize§stability_method: StringTrait Implementations§
Source§impl Clone for LoggableSignalStats
impl Clone for LoggableSignalStats
Source§fn clone(&self) -> LoggableSignalStats
fn clone(&self) -> LoggableSignalStats
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 LoggableSignalStats
impl Debug for LoggableSignalStats
Source§impl<'de> Deserialize<'de> for LoggableSignalStats
impl<'de> Deserialize<'de> for LoggableSignalStats
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for LoggableSignalStats
impl RefUnwindSafe for LoggableSignalStats
impl Send for LoggableSignalStats
impl Sync for LoggableSignalStats
impl Unpin for LoggableSignalStats
impl UnwindSafe for LoggableSignalStats
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