pub struct RunReport {
pub rows: u64,
pub bytes_written: u64,
pub written_objects: Vec<String>,
pub duration: Duration,
pub coercions: Vec<Coercion>,
}Expand description
Post-run statistics returned by Transfer::run().
Fields§
§rows: u64Total rows transferred.
bytes_written: u64Total bytes written to the destination.
written_objects: Vec<String>What the destination wrote: file paths, object URIs, dataset.table, etc.
duration: DurationWall-clock duration of the run.
coercions: Vec<Coercion>Coercions applied during the run.
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§
impl<T> Allocation for T
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