Enum diesel::result::TransactionError [] [src]

pub enum TransactionError<E> {
    CouldntCreateTransaction(Error),
    UserReturnedError(E),
}

Variants

Trait Implementations

impl<E: Debug> Debug for TransactionError<E>
[src]

Formats the value using the given formatter.

impl<E: PartialEq> PartialEq for TransactionError<E>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<E> From<Error> for TransactionError<E>
[src]

Performs the conversion.

impl<E: Display> Display for TransactionError<E>
[src]

Formats the value using the given formatter.

impl<E: StdError> StdError for TransactionError<E>
[src]

A short description of the error. Read more

The lower-level cause of this error, if any. Read more