pub struct BatchResult {
pub operation: BatchOperation,
pub result: Result<Option<PlcValue>, BatchError>,
pub execution_time_us: u64,
}
Expand description
Result of a single operation in a batch request
This structure contains the result of executing a single batch operation, including success/failure status and the actual data or error information.
Fields§
§operation: BatchOperation
The original operation that was executed
result: Result<Option<PlcValue>, BatchError>
The result of the operation
execution_time_us: u64
Execution time for this specific operation (in microseconds)
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 moreAuto 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