pub struct RunStats {
pub items_in: u64,
pub duration: Duration,
}Expand description
Statistics returned by a successful pipeline run.
Fields§
§items_in: u64Number of items pulled from the source.
duration: DurationAvailable on crate feature
std only.Wall-clock duration of the run. Always Duration::ZERO under
no_std (no monotonic clock available).
Trait Implementations§
impl Copy for RunStats
impl Eq for RunStats
impl StructuralPartialEq for RunStats
Auto Trait Implementations§
impl Freeze for RunStats
impl RefUnwindSafe for RunStats
impl Send for RunStats
impl Sync for RunStats
impl Unpin for RunStats
impl UnsafeUnpin for RunStats
impl UnwindSafe for RunStats
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