[−][src]Enum sqlx_core::error::Error
Represents all the ways a method can fail within SQLx.
Variants (Non-exhaustive)
Configuration(BoxDynError)Error occurred while parsing a connection string.
Database(Box<dyn DatabaseError>)Error returned from the database.
Io(Error)Error communicating with the database backend.
Tls(BoxDynError)Error occurred while attempting to establish a TLS connection.
Protocol(String)Unexpected or invalid data encountered while communicating with the database.
This should indicate there is a programming error in a SQLx driver or there is something corrupted with the connection to the database itself.
No rows returned by a query that expected to return at least one row.
Column index was out of bounds.
ColumnNotFound(String)No column found for the given name.
Error occurred while decoding a value from a specific column.
Fields of ColumnDecode
index: Stringsource: BoxDynErrorDecode(BoxDynError)Error occurred while decoding a value.
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.
Pool::close was called while we were waiting in Pool::acquire.
Migrate(Box<MigrateError>)Implementations
impl Error[src]
pub fn into_database_error(self) -> Option<Box<dyn DatabaseError + 'static>>[src]
pub fn as_database_error(&self) -> Option<&(dyn DatabaseError + 'static)>[src]
Trait Implementations
impl Debug for Error[src]
impl Display for Error[src]
impl Error for Error[src]
fn source(&self) -> Option<&(dyn Error + 'static)>[src]
fn backtrace(&self) -> Option<&Backtrace>[src]
fn description(&self) -> &str1.0.0[src]
fn cause(&self) -> Option<&dyn Error>1.0.0[src]
impl<E> From<E> for Error where
E: DatabaseError, [src]
E: DatabaseError,
impl From<Error> for Error[src]
impl From<Error> for MigrateError[src]
impl From<MigrateError> for Error[src]
fn from(error: MigrateError) -> Self[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]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> ToString for T where
T: Display + ?Sized, [src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,