pub struct BatchOptions {
pub include_details: bool,
pub parallel: bool,
pub timeout_seconds: u64,
pub max_concurrent: usize,
}
Expand description
Options for batch processing
Fields§
§include_details: bool
Include detailed crate information
parallel: bool
Process requests in parallel
timeout_seconds: u64
Timeout for the entire batch operation
max_concurrent: usize
Maximum number of concurrent requests
Trait Implementations§
Source§impl Debug for BatchOptions
impl Debug for BatchOptions
Source§impl Default for BatchOptions
impl Default for BatchOptions
Source§fn default() -> BatchOptions
fn default() -> BatchOptions
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BatchOptions
impl<'de> Deserialize<'de> for BatchOptions
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for BatchOptions
impl RefUnwindSafe for BatchOptions
impl Send for BatchOptions
impl Sync for BatchOptions
impl Unpin for BatchOptions
impl UnwindSafe for BatchOptions
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