pub struct RunReport {
pub rows: u64,
pub bytes_written: u64,
pub duration: Duration,
pub coercions: Vec<Coercion>,
}Expand description
Post-run statistics returned by Transfer::run().
Fields§
§rows: u64§bytes_written: u64§duration: Duration§coercions: Vec<Coercion>Trait Implementations§
Auto Trait Implementations§
impl Freeze for RunReport
impl RefUnwindSafe for RunReport
impl Send for RunReport
impl Sync for RunReport
impl Unpin for RunReport
impl UnsafeUnpin for RunReport
impl UnwindSafe for RunReport
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