pub struct MinimalStats {
pub bytes_processed: u64,
pub elements_yielded: usize,
pub current_depth: usize,
pub elapsed: Duration,
}Fields§
§bytes_processed: u64§elements_yielded: usize§current_depth: usize§elapsed: DurationImplementations§
Source§impl MinimalStats
impl MinimalStats
pub fn throughput_mibs(&self) -> f64
Trait Implementations§
Source§impl Clone for MinimalStats
impl Clone for MinimalStats
Source§fn clone(&self) -> MinimalStats
fn clone(&self) -> MinimalStats
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 MinimalStats
impl RefUnwindSafe for MinimalStats
impl Send for MinimalStats
impl Sync for MinimalStats
impl Unpin for MinimalStats
impl UnwindSafe for MinimalStats
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