[][src]Enum diesel::result::DatabaseErrorKind

pub enum DatabaseErrorKind {
    UniqueViolation,
    ForeignKeyViolation,
    UnableToSendCommand,
    SerializationFailure,
    // some variants omitted
}

The kind of database error that occurred.

This is not meant to exhaustively cover all possible errors, but is used to identify errors which are commonly recovered from programmatically. This enum is not intended to be exhaustively matched, and new variants may be added in the future without a major version bump.

Variants

UniqueViolation

A unique constraint was violated.

ForeignKeyViolation

A foreign key constraint was violated.

UnableToSendCommand

The query could not be sent to the database due to a protocol violation.

An example of a case where this would occur is if you attempted to send a query with more than 65000 bind parameters using PostgreSQL.

SerializationFailure

A serializable transaction failed to commit due to a read/write dependency on a concurrent transaction.

Corresponds to SQLSTATE code 40001

This error is only detected for PostgreSQL, as we do not yet support transaction isolation levels for other backends.

Trait Implementations

impl Copy for DatabaseErrorKind[src]

impl Clone for DatabaseErrorKind[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for DatabaseErrorKind[src]

Auto Trait Implementations

impl Unpin for DatabaseErrorKind

impl Sync for DatabaseErrorKind

impl Send for DatabaseErrorKind

impl UnwindSafe for DatabaseErrorKind

impl RefUnwindSafe for DatabaseErrorKind

Blanket Implementations

impl<T> IntoSql for T[src]

fn into_sql<T>(self) -> AsExprOf<Self, T> where
    Self: AsExpression<T> + Sized
[src]

Convert self to an expression for Diesel's query builder. Read more

fn as_sql<'a, T>(&'a self) -> AsExprOf<&'a Self, T> where
    &'a Self: AsExpression<T>, 
[src]

Convert &self to an expression for Diesel's query builder. Read more

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]