pub struct Progress {
pub bytes_processed: Option<i64>,
pub bytes_returned: Option<i64>,
pub bytes_scanned: Option<i64>,
}Expand description
This data type contains information about progress of an operation.
Fields§
§bytes_processed: Option<i64>The current number of uncompressed object bytes processed.
bytes_returned: Option<i64>The current number of bytes of records payload data returned.
bytes_scanned: Option<i64>The current number of object bytes scanned.
Trait Implementations§
impl StructuralPartialEq for Progress
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