pub struct OperationComplete {
pub operation_type: OperationType,
pub succeeded: usize,
pub failed: usize,
pub bytes_processed: u64,
pub errors: Vec<OperationError>,
}Expand description
Result of a completed operation.
Fields§
§operation_type: OperationTypeThe type of operation.
succeeded: usizeNumber of items successfully processed.
failed: usizeNumber of items that failed.
bytes_processed: u64Total bytes processed.
errors: Vec<OperationError>Errors that occurred.
Implementations§
Trait Implementations§
Source§impl Clone for OperationComplete
impl Clone for OperationComplete
Source§fn clone(&self) -> OperationComplete
fn clone(&self) -> OperationComplete
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for OperationComplete
impl RefUnwindSafe for OperationComplete
impl Send for OperationComplete
impl Sync for OperationComplete
impl Unpin for OperationComplete
impl UnsafeUnpin for OperationComplete
impl UnwindSafe for OperationComplete
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