pub enum TransactionResult {
Commit,
Abort(String),
Reschedule,
}Variants§
Trait Implementations§
Source§impl Debug for TransactionResult
impl Debug for TransactionResult
Source§impl PartialEq for TransactionResult
impl PartialEq for TransactionResult
Source§fn eq(&self, other: &TransactionResult) -> bool
fn eq(&self, other: &TransactionResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TransactionResult
Auto Trait Implementations§
impl Freeze for TransactionResult
impl RefUnwindSafe for TransactionResult
impl Send for TransactionResult
impl Sync for TransactionResult
impl Unpin for TransactionResult
impl UnsafeUnpin for TransactionResult
impl UnwindSafe for TransactionResult
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