pub struct BatchExecutor {
pub max_batch_size: usize,
pub max_concurrent: usize,
/* private fields */
}Expand description
Batch executor for processing multiple items efficiently.
Fields§
§max_batch_size: usizeMaximum batch size.
max_concurrent: usizeMaximum concurrent batches.
Implementations§
Trait Implementations§
Source§impl Debug for BatchExecutor
impl Debug for BatchExecutor
Auto Trait Implementations§
impl Freeze for BatchExecutor
impl RefUnwindSafe for BatchExecutor
impl Send for BatchExecutor
impl Sync for BatchExecutor
impl Unpin for BatchExecutor
impl UnwindSafe for BatchExecutor
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