pub enum StmError {
Failure,
Retry,
}
Expand description
Error of a single step of a transaction.
Variants§
Failure
The call failed, because a variable, the computation depends on, has changed.
Retry
retry
was called.
It may block until at least one read variable has changed.
Trait Implementations§
Source§impl Error for StmError
impl Error for StmError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl<E> From<StmError> for TransactionError<E>
impl<E> From<StmError> for TransactionError<E>
impl Copy for StmError
impl Eq for StmError
impl StructuralPartialEq for StmError
Auto Trait Implementations§
impl Freeze for StmError
impl RefUnwindSafe for StmError
impl Send for StmError
impl Sync for StmError
impl Unpin for StmError
impl UnwindSafe for StmError
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