pub enum TransactionResult<T, E> {
Validated(T),
Cancelled(E),
Abandoned,
}
Expand description
Result of a fallible transaction.
A given transaction can finish in three different ways:
- it is validated, and possibly returns an output value,
- it is manually cancelled, and possibly returns a user-defined error,
- it is cancelled through regular STM control flow.
Each variant of this enum represents a case. All of the associated methods behave
like their equivalent for std::result::Result
.
Variants§
Validated(T)
Transaction completed successfully.
Cancelled(E)
Transaction was manually aborted.
Abandoned
Transaction was aorted through standard control flow.
Implementations§
Source§impl<T, E> TransactionResult<T, E>
impl<T, E> TransactionResult<T, E>
Sourcepub fn is_validated(&self) -> bool
pub fn is_validated(&self) -> bool
Returns true
if the result is Validated
.
Sourcepub fn is_validated_and(self, f: impl FnOnce(T) -> bool) -> bool
pub fn is_validated_and(self, f: impl FnOnce(T) -> bool) -> bool
Returns true
if the result is Validated
and the value inside of it matches a predicate.
Sourcepub fn is_cancelled(&self) -> bool
pub fn is_cancelled(&self) -> bool
Returns true
if the result is Cancelled
.
Sourcepub fn is_cancelled_and(self, f: impl FnOnce(E) -> bool) -> bool
pub fn is_cancelled_and(self, f: impl FnOnce(E) -> bool) -> bool
Returns true
if the result is Cancelled
and the value inside of it matches a predicate.
Sourcepub fn validated(self) -> Option<T>
pub fn validated(self) -> Option<T>
Converts self: TransactionResult<T, E>
to Option<T>
, consuming self
,
and discarding the error, if any.
Sourcepub fn cancelled(self) -> Option<E>
pub fn cancelled(self) -> Option<E>
Converts self: TransactionResult<T, E>
to Option<E>
, consuming self
,
and discarding the success value, if any.
Sourcepub fn expect_err(self, msg: &str) -> Ewhere
T: Debug,
pub fn expect_err(self, msg: &str) -> Ewhere
T: Debug,
Sourcepub fn unwrap_err(self) -> Ewhere
T: Debug,
pub fn unwrap_err(self) -> Ewhere
T: Debug,
Trait Implementations§
Source§impl<T: Clone, E: Clone> Clone for TransactionResult<T, E>
impl<T: Clone, E: Clone> Clone for TransactionResult<T, E>
Source§fn clone(&self) -> TransactionResult<T, E>
fn clone(&self) -> TransactionResult<T, E>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more