pub struct BatchOperationResult {
pub operation: BatchOperation,
pub success: bool,
pub error: Option<String>,
pub response: Option<String>,
pub duration: Duration,
}Expand description
Result of a single batch operation
Fields§
§operation: BatchOperationThe operation that was executed
success: boolWhether the operation succeeded
error: Option<String>Error message if the operation failed
response: Option<String>Response body if the operation succeeded
duration: DurationTime taken to execute this operation
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BatchOperationResult
impl RefUnwindSafe for BatchOperationResult
impl Send for BatchOperationResult
impl Sync for BatchOperationResult
impl Unpin for BatchOperationResult
impl UnwindSafe for BatchOperationResult
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