pub struct VariantLead {
pub activities: Vec<String>,
pub count: usize,
pub median_secs: f64,
pub mean_secs: f64,
pub p90_secs: f64,
}Expand description
Lead-time distribution of one variant.
Fields§
§activities: Vec<String>§count: usize§median_secs: f64§mean_secs: f64§p90_secs: f64Trait Implementations§
Source§impl Clone for VariantLead
impl Clone for VariantLead
Source§fn clone(&self) -> VariantLead
fn clone(&self) -> VariantLead
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 VariantLead
impl Debug for VariantLead
Source§impl PartialEq for VariantLead
impl PartialEq for VariantLead
Source§fn eq(&self, other: &VariantLead) -> bool
fn eq(&self, other: &VariantLead) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for VariantLead
impl Serialize for VariantLead
impl StructuralPartialEq for VariantLead
Auto Trait Implementations§
impl Freeze for VariantLead
impl RefUnwindSafe for VariantLead
impl Send for VariantLead
impl Sync for VariantLead
impl Unpin for VariantLead
impl UnsafeUnpin for VariantLead
impl UnwindSafe for VariantLead
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