pub struct ComprehensiveStats {
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 ComprehensiveStats
impl ComprehensiveStats
pub fn throughput_mibs(&self) -> f64
Trait Implementations§
Source§impl Clone for ComprehensiveStats
impl Clone for ComprehensiveStats
Source§fn clone(&self) -> ComprehensiveStats
fn clone(&self) -> ComprehensiveStats
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 ComprehensiveStats
impl RefUnwindSafe for ComprehensiveStats
impl Send for ComprehensiveStats
impl Sync for ComprehensiveStats
impl Unpin for ComprehensiveStats
impl UnwindSafe for ComprehensiveStats
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