pub struct ProgressStats {
pub items_processed: u64,
pub batches_processed: u32,
pub elapsed: Duration,
pub items_per_second: f64,
}Expand description
Progress statistics
Fields§
§items_processed: u64§batches_processed: u32§elapsed: Duration§items_per_second: f64Implementations§
Source§impl ProgressStats
impl ProgressStats
Trait Implementations§
Source§impl Clone for ProgressStats
impl Clone for ProgressStats
Source§fn clone(&self) -> ProgressStats
fn clone(&self) -> ProgressStats
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 ProgressStats
impl Debug for ProgressStats
Auto Trait Implementations§
impl Freeze for ProgressStats
impl RefUnwindSafe for ProgressStats
impl Send for ProgressStats
impl Sync for ProgressStats
impl Unpin for ProgressStats
impl UnsafeUnpin for ProgressStats
impl UnwindSafe for ProgressStats
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