pub struct BatchResult {
pub batch_id: String,
pub success: bool,
pub operation_results: Vec<UpdateResult>,
pub processing_time_ms: u64,
pub successful_operations: usize,
pub failed_operations: usize,
pub batch_errors: Vec<String>,
pub stats: BatchProcessingStats,
pub retry_info: Option<RetryInfo>,
}Expand description
Result of batch processing
Fields§
§batch_id: StringBatch ID
success: boolOverall success status
operation_results: Vec<UpdateResult>Individual operation results
processing_time_ms: u64Total processing time
successful_operations: usizeNumber of successful operations
failed_operations: usizeNumber of failed operations
batch_errors: Vec<String>Batch-level errors
stats: BatchProcessingStatsPerformance statistics
retry_info: Option<RetryInfo>Retry information
Trait Implementations§
Source§impl Clone for BatchResult
impl Clone for BatchResult
Source§fn clone(&self) -> BatchResult
fn clone(&self) -> BatchResult
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 moreSource§impl Debug for BatchResult
impl Debug for BatchResult
Source§impl<'de> Deserialize<'de> for BatchResult
impl<'de> Deserialize<'de> for BatchResult
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 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