pub struct BatchResult {
pub results: Vec<BatchOperationResult>,
pub total_duration: Duration,
pub success_count: usize,
pub failure_count: usize,
}Expand description
Result of an entire batch execution
Fields§
§results: Vec<BatchOperationResult>Results for each operation
total_duration: DurationTotal time taken for the entire batch
success_count: usizeNumber of successful operations
failure_count: usizeNumber of failed operations
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BatchResult
impl RefUnwindSafe for BatchResult
impl Send for BatchResult
impl Sync for BatchResult
impl Unpin for BatchResult
impl UnwindSafe for BatchResult
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