pub struct BatchOperationErrorData {
pub batch_operation_index: usize,
pub batch_operation_method: String,
pub cause: ProtocolErrorCause,
}Expand description
Structured error.data payload emitted when transaction.batch fails.
Fields§
§batch_operation_index: usize§batch_operation_method: String§cause: ProtocolErrorCauseTrait Implementations§
Source§impl Clone for BatchOperationErrorData
impl Clone for BatchOperationErrorData
Source§fn clone(&self) -> BatchOperationErrorData
fn clone(&self) -> BatchOperationErrorData
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 BatchOperationErrorData
impl Debug for BatchOperationErrorData
Source§impl<'de> Deserialize<'de> for BatchOperationErrorData
impl<'de> Deserialize<'de> for BatchOperationErrorData
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
Source§impl PartialEq for BatchOperationErrorData
impl PartialEq for BatchOperationErrorData
Source§impl Serialize for BatchOperationErrorData
impl Serialize for BatchOperationErrorData
impl StructuralPartialEq for BatchOperationErrorData
Auto Trait Implementations§
impl Freeze for BatchOperationErrorData
impl RefUnwindSafe for BatchOperationErrorData
impl Send for BatchOperationErrorData
impl Sync for BatchOperationErrorData
impl Unpin for BatchOperationErrorData
impl UnsafeUnpin for BatchOperationErrorData
impl UnwindSafe for BatchOperationErrorData
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