[][src]Enum sqlx::Error

pub enum Error {
    Io(Error),
    UrlParse(ParseError),
    Database(Box<dyn DatabaseError + 'static>),
    NotFound,
    FoundMoreThanOne,
    ColumnNotFound(Box<str>),
    Protocol(Box<str>),
    PoolTimedOut,
    PoolClosed,
    Decode(DecodeError),
    // some variants omitted
}

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

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.

NotFound

No rows were returned by a query that expected to return at least one row.

FoundMoreThanOne

More than one row was returned by a query that expected to return exactly one row.

ColumnNotFound(Box<str>)

Column was not found in Row during [Row::try_get].

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

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.

Decode(DecodeError)

Trait Implementations

impl Debug for Error[src]

impl Display for Error[src]

impl Error for Error[src]

impl From<DecodeError> for Error[src]

impl From<Error> for Error[src]

impl From<ErrorKind> for Error[src]

impl From<ParseError> for Error[src]

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

impl<T> From<T> for Error where
    T: 'static + DatabaseError
[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, DB> HasSqlType<&'_ T> for DB where
    DB: HasSqlType<T>,
    T: ?Sized
[src]

impl<T, DB> HasSqlType<Option<T>> for DB where
    DB: HasSqlType<T>, 
[src]

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

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.