pub struct VoiSummary {
pub total_events: u64,
pub total_samples: u64,
pub forced_samples: u64,
pub skipped_events: u64,
pub current_mean: f64,
pub current_variance: f64,
pub e_value: f64,
pub e_threshold: f64,
pub avg_events_between_samples: f64,
pub avg_ms_between_samples: f64,
}Expand description
Summary statistics for VOI sampling.
Fields§
§total_events: u64§total_samples: u64§forced_samples: u64§skipped_events: u64§current_mean: f64§current_variance: f64§e_value: f64§e_threshold: f64§avg_events_between_samples: f64§avg_ms_between_samples: f64Trait Implementations§
Source§impl Clone for VoiSummary
impl Clone for VoiSummary
Source§fn clone(&self) -> VoiSummary
fn clone(&self) -> VoiSummary
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 VoiSummary
impl RefUnwindSafe for VoiSummary
impl Send for VoiSummary
impl Sync for VoiSummary
impl Unpin for VoiSummary
impl UnsafeUnpin for VoiSummary
impl UnwindSafe for VoiSummary
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