[][src]Enum sqlx::Error

#[non_exhaustive]pub enum Error {
    Io(Error),
    UrlParse(ParseError),
    Database(Box<dyn DatabaseError + 'static>),
    RowNotFound,
    ColumnNotFound(Box<str>),
    ColumnIndexOutOfBounds {
        index: usize,
        len: usize,
    },
    Protocol(Box<str>),
    PoolTimedOut(Option<Box<dyn Error + 'static + Send + Sync>>),
    PoolClosed,
    Tls(Box<dyn Error + 'static + Send + Sync>),
    Decode(Box<dyn Error + 'static + Send + Sync>),
}

A generic error that represents all the ways a method can fail inside of SQLx.

Variants (Non-exhaustive)

Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Io(Error)

Error communicating with the database.

UrlParse(ParseError)

Connection URL was malformed.

Database(Box<dyn DatabaseError + 'static>)

An error was returned by the database.

RowNotFound

No row was returned during query::Map::fetch_one or QueryAs::fetch_one.

ColumnNotFound(Box<str>)

Column was not found by name in a Row (during Row::get).

ColumnIndexOutOfBounds

Column index was out of bounds (e.g., asking for column 4 in a 2-column row).

Fields of ColumnIndexOutOfBounds

index: usizelen: usize
Protocol(Box<str>)

Unexpected or invalid data was encountered. This would indicate that we received data that we were not expecting or it was in a format we did not understand. This generally means either there is a programming error in a SQLx driver or something with the connection or the database database itself is corrupted.

Context is provided by the included error message.

PoolTimedOut(Option<Box<dyn Error + 'static + Send + Sync>>)

A Pool::acquire timed out due to connections not becoming available or because another task encountered too many errors while trying to open a new connection.

PoolClosed

Pool::close was called while we were waiting in Pool::acquire.

Tls(Box<dyn Error + 'static + Send + Sync>)

An error occurred while attempting to setup TLS. This should only be returned from an explicit ask for TLS.

Decode(Box<dyn Error + 'static + Send + Sync>)

An error occurred decoding data received from the database.

Trait Implementations

impl Debug for Error[src]

impl Display for Error[src]

impl Error for Error[src]

impl From<Error> for Error[src]

impl From<Error> for Error[src]

impl From<ErrorKind> for Error[src]

impl From<MySqlError> for Error[src]

impl From<ParseError> for Error[src]

impl From<PgError> for Error[src]

impl<'_> From<ProtocolError<'_>> for Error[src]

impl From<SqliteError> for Error[src]

impl<'_> From<TlsError<'_>> for Error[src]

impl From<UnexpectedNullError> for Error[src]

Auto Trait Implementations

impl !RefUnwindSafe for Error

impl Send for Error

impl Sync for Error

impl Unpin for Error

impl !UnwindSafe for Error

Blanket Implementations

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

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

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToString for T where
    T: Display + ?Sized
[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<V, T> VZip<V> for T where
    V: MultiLane<T>,