Enum TransactionResult

Source
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>

Source

pub fn is_validated(&self) -> bool

Returns true if the result is Validated.

Source

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.

Source

pub fn is_cancelled(&self) -> bool

Returns true if the result is Cancelled.

Source

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.

Source

pub fn validated(self) -> Option<T>

Converts self: TransactionResult<T, E> to Option<T>, consuming self, and discarding the error, if any.

Source

pub fn cancelled(self) -> Option<E>

Converts self: TransactionResult<T, E> to Option<E>, consuming self, and discarding the success value, if any.

Source

pub fn failed(self) -> bool

Returns true if the result is Abandoned.

Source

pub fn expect(self, msg: &str) -> T
where E: Debug,

Returns the contained Validated value, consuming self.

§Panics

Panics if the value is a Cancelled or Abandoned, with a panic message including the passed message, and the content of Cancelled if applicable.

Source

pub fn expect_err(self, msg: &str) -> E
where T: Debug,

Returns the contained Cancelled error, consuming self.

§Panics

Panics if the value is a Validated or Abandoned, with a panic message including the passed message, and the content of Validated if applicable.

Source

pub fn unwrap(self) -> T
where E: Debug,

Returns the contained Validated value, consuming self.

§Panics

Panics if the value is a Cancelled or Abandoned, with a panic message specified by the content of Cancelled if applicable.

Source

pub fn unwrap_err(self) -> E
where T: Debug,

Returns the contained Cancelled error, consuming self.

§Panics

Panics if the value is a Validated or Abandoned, with a panic message specified by the content of Validated if applicable.

Source

pub fn unwrap_or_default(self) -> T
where T: Default,

Returns the contained Validated value or a default value, consuming self.

If the value is a Cancelled or Abandoned, the Default implementation of T is called to return a value.

Trait Implementations§

Source§

impl<T: Clone, E: Clone> Clone for TransactionResult<T, E>

Source§

fn clone(&self) -> TransactionResult<T, E>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<T: Debug, E: Debug> Debug for TransactionResult<T, E>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<T: PartialEq, E: PartialEq> PartialEq for TransactionResult<T, E>

Source§

fn eq(&self, other: &TransactionResult<T, E>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<T: Copy, E: Copy> Copy for TransactionResult<T, E>

Source§

impl<T: Eq, E: Eq> Eq for TransactionResult<T, E>

Source§

impl<T, E> StructuralPartialEq for TransactionResult<T, E>

Auto Trait Implementations§

§

impl<T, E> Freeze for TransactionResult<T, E>
where T: Freeze, E: Freeze,

§

impl<T, E> RefUnwindSafe for TransactionResult<T, E>

§

impl<T, E> Send for TransactionResult<T, E>
where T: Send, E: Send,

§

impl<T, E> Sync for TransactionResult<T, E>
where T: Sync, E: Sync,

§

impl<T, E> Unpin for TransactionResult<T, E>
where T: Unpin, E: Unpin,

§

impl<T, E> UnwindSafe for TransactionResult<T, E>
where T: UnwindSafe, E: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.