pub struct BurstResult {
pub bursts: Vec<Burst>,
pub n_bursts: usize,
pub max_burst_length: usize,
pub mean_burst_length: f64,
pub total_burst_fraction: f64,
pub is_valid: bool,
}Fields§
§bursts: Vec<Burst>§n_bursts: usize§max_burst_length: usize§mean_burst_length: f64§total_burst_fraction: f64§is_valid: boolTrait Implementations§
Source§impl Clone for BurstResult
impl Clone for BurstResult
Source§fn clone(&self) -> BurstResult
fn clone(&self) -> BurstResult
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 BurstResult
impl Debug for BurstResult
Auto Trait Implementations§
impl Freeze for BurstResult
impl RefUnwindSafe for BurstResult
impl Send for BurstResult
impl Sync for BurstResult
impl Unpin for BurstResult
impl UnsafeUnpin for BurstResult
impl UnwindSafe for BurstResult
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