pub struct BatchResult<T: Debug> {
pub total: usize,
pub succeeded: usize,
pub failed: usize,
pub results: Vec<BatchItemResult<T>>,
}Expand description
Result of a batch operation with per-item tracking
Fields§
§total: usize§succeeded: usize§failed: usize§results: Vec<BatchItemResult<T>>Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for BatchResult<T>
impl<T> RefUnwindSafe for BatchResult<T>where
T: RefUnwindSafe,
impl<T> Send for BatchResult<T>where
T: Send,
impl<T> Sync for BatchResult<T>where
T: Sync,
impl<T> Unpin for BatchResult<T>where
T: Unpin,
impl<T> UnsafeUnpin for BatchResult<T>
impl<T> UnwindSafe for BatchResult<T>where
T: UnwindSafe,
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