[][src]Enum rbatis_core::error::Error

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

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

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.

Default Error

Io(Error)

Error communicating with the database.

UrlParse(ParseError)

Connection URL was malformed.

Database(Box<dyn DatabaseError>)

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

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

Decode(Box<dyn StdError + Send + Sync>)

An error occurred decoding data received from the database.

Trait Implementations

impl Clone for Error[src]

impl Debug for Error[src]

impl<'de> Deserialize<'de> for Error[src]

impl Display for Error[src]

impl Error for Error[src]

impl<'_> From<&'_ str> 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<SqliteError> for Error[src]

impl From<String> for Error[src]

impl From<UnexpectedNullError> for Error[src]

impl Serialize 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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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