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