pub struct RollbackError {
pub operation_index: usize,
pub error: String,
}Expand description
Error encountered during a rollback operation.
Fields§
§operation_index: usizeIndex of the operation in the original batch
error: StringError message
Trait Implementations§
Source§impl Clone for RollbackError
impl Clone for RollbackError
Source§fn clone(&self) -> RollbackError
fn clone(&self) -> RollbackError
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 RollbackError
impl Debug for RollbackError
Source§impl<'de> Deserialize<'de> for RollbackError
impl<'de> Deserialize<'de> for RollbackError
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 RollbackError
impl RefUnwindSafe for RollbackError
impl Send for RollbackError
impl Sync for RollbackError
impl Unpin for RollbackError
impl UnwindSafe for RollbackError
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