[][src]Enum sqlx::Error

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

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)

Errorcommunicating with the database.

UrlParse(ParseError)

Connection URL was malformed.

Database(Box<<DB as Database>::Error>)

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 + Sync + Send>>)

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 + Sync + Send>)

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

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

An error occurred decoding data received from the database.

Trait Implementations

impl<DB> Debug for Error<DB> where
    DB: Database + Debug,
    <DB as Database>::Error: Debug
[src]

impl<DB> Display for Error<DB> where
    DB: Database
[src]

impl<DB> Error for Error<DB> where
    DB: Database + Debug
[src]

impl<DB> From<Error> for Error<DB> where
    DB: Database
[src]

impl<DB> From<Error> for Error<DB> where
    DB: Database
[src]

impl<DB> From<ErrorKind> for Error<DB> where
    DB: Database
[src]

impl From<MySqlDatabaseError> for Error<MySql>[src]

impl<DB> From<ParseError> for Error<DB> where
    DB: Database
[src]

impl From<PgDatabaseError> for Error<Postgres>[src]

impl<'_, DB> From<ProtocolError<'_>> for Error<DB> where
    DB: Database
[src]

impl<'_, DB> From<TlsError<'_>> for Error<DB> where
    DB: Database
[src]

Auto Trait Implementations

impl<DB> !RefUnwindSafe for Error<DB>

impl<DB> Send for Error<DB> where
    <DB as Database>::Error: Send

impl<DB> Sync for Error<DB> where
    <DB as Database>::Error: Sync

impl<DB> Unpin for Error<DB>

impl<DB> !UnwindSafe for Error<DB>

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