pub struct Progress {
pub rows: u64,
pub bytes: u64,
pub total_rows: u64,
pub written_rows: u64,
pub written_bytes: u64,
}Expand description
Progress information
Fields§
§rows: u64Number of rows read so far.
bytes: u64Number of bytes read so far.
total_rows: u64Total number of rows expected.
written_rows: u64Number of rows written so far.
written_bytes: u64Number of bytes written so far.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Progress
impl RefUnwindSafe for Progress
impl Send for Progress
impl Sync for Progress
impl Unpin for Progress
impl UnwindSafe for Progress
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