#[non_exhaustive]pub enum Error {
Show 20 variants
Configuration(Box<dyn Error + Sync + Send>),
InvalidArgument(String),
Database(Box<dyn DatabaseError>),
Io(Error),
Tls(Box<dyn Error + Sync + Send>),
Protocol(String),
RowNotFound,
TypeNotFound {
type_name: String,
},
ColumnIndexOutOfBounds {
index: usize,
len: usize,
},
ColumnNotFound(String),
ColumnDecode {
index: String,
source: Box<dyn Error + Sync + Send>,
},
Encode(Box<dyn Error + Sync + Send>),
Decode(Box<dyn Error + Sync + Send>),
AnyDriverError(Box<dyn Error + Sync + Send>),
PoolTimedOut,
PoolClosed,
WorkerCrashed,
Migrate(Box<MigrateError>),
InvalidSavePointStatement,
BeginFailed,
}Expand description
Represents all the ways a method can fail within SQLx.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Configuration(Box<dyn Error + Sync + Send>)
Error occurred while parsing a connection string.
InvalidArgument(String)
One or more of the arguments to the called function was invalid.
The string contains more information.
Database(Box<dyn DatabaseError>)
Error returned from the database.
Io(Error)
Error communicating with the database backend.
Tls(Box<dyn Error + Sync + Send>)
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.
RowNotFound
No rows returned by a query that expected to return at least one row.
TypeNotFound
Type in query doesn’t exist. Likely due to typo or missing user type.
ColumnIndexOutOfBounds
Column index was out of bounds.
ColumnNotFound(String)
No column found for the given name.
ColumnDecode
Error occurred while decoding a value from a specific column.
Encode(Box<dyn Error + Sync + Send>)
Error occured while encoding a value.
Decode(Box<dyn Error + Sync + Send>)
Error occurred while decoding a value.
AnyDriverError(Box<dyn Error + Sync + Send>)
Error occurred within the Any driver mapping to/from the native driver.
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.
WorkerCrashed
A background worker has crashed.
Migrate(Box<MigrateError>)
InvalidSavePointStatement
BeginFailed
Implementations§
Source§impl Error
impl Error
pub fn into_database_error(self) -> Option<Box<dyn DatabaseError>>
pub fn as_database_error(&self) -> Option<&(dyn DatabaseError + 'static)>
Trait Implementations§
Source§impl DatabaseErrorExt for Error
impl DatabaseErrorExt for Error
fn is_error_code(&self, error_code: &str) -> bool
fn is_database_does_not_exist(&self) -> bool
fn is_database_exists(&self) -> bool
fn is_table_does_not_exist(&self) -> bool
fn is_duplicate_record(&self) -> bool
fn is_restrict(&self) -> bool
Source§impl Error for Error
impl Error for Error
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
Source§impl<E> From<E> for Errorwhere
E: DatabaseError,
impl<E> From<E> for Errorwhere
E: DatabaseError,
Source§impl From<Error> for CreateDocumentBoxError
impl From<Error> for CreateDocumentBoxError
Source§fn from(source: Error) -> CreateDocumentBoxError
fn from(source: Error) -> CreateDocumentBoxError
Source§impl From<Error> for CreateFolderError
impl From<Error> for CreateFolderError
Source§fn from(source: Error) -> CreateFolderError
fn from(source: Error) -> CreateFolderError
Source§impl From<Error> for CreateLinkError
impl From<Error> for CreateLinkError
Source§fn from(source: Error) -> CreateLinkError
fn from(source: Error) -> CreateLinkError
Source§impl From<Error> for DbConnectErr
impl From<Error> for DbConnectErr
Source§fn from(source: Error) -> DbConnectErr
fn from(source: Error) -> DbConnectErr
Source§impl From<Error> for DeleteDocumentBoxError
impl From<Error> for DeleteDocumentBoxError
Source§fn from(source: Error) -> DeleteDocumentBoxError
fn from(source: Error) -> DeleteDocumentBoxError
Source§impl From<Error> for DeleteFileError
impl From<Error> for DeleteFileError
Source§fn from(source: Error) -> DeleteFileError
fn from(source: Error) -> DeleteFileError
Source§impl From<Error> for DeleteLinkError
impl From<Error> for DeleteLinkError
Source§fn from(source: Error) -> DeleteLinkError
fn from(source: Error) -> DeleteLinkError
Source§impl From<Error> for PdfCompatibleRebuildError
impl From<Error> for PdfCompatibleRebuildError
Source§fn from(source: Error) -> PdfCompatibleRebuildError
fn from(source: Error) -> PdfCompatibleRebuildError
Source§impl From<Error> for RebuildTenantIndexError
impl From<Error> for RebuildTenantIndexError
Source§fn from(source: Error) -> RebuildTenantIndexError
fn from(source: Error) -> RebuildTenantIndexError
Source§impl From<Error> for SearchDocumentBoxError
impl From<Error> for SearchDocumentBoxError
Source§fn from(source: Error) -> SearchDocumentBoxError
fn from(source: Error) -> SearchDocumentBoxError
Source§impl From<Error> for UpdateFileError
impl From<Error> for UpdateFileError
Source§fn from(source: Error) -> UpdateFileError
fn from(source: Error) -> UpdateFileError
Source§impl From<Error> for UpdateFolderError
impl From<Error> for UpdateFolderError
Source§fn from(source: Error) -> UpdateFolderError
fn from(source: Error) -> UpdateFolderError
Source§impl From<Error> for UpdateLinkError
impl From<Error> for UpdateLinkError
Source§fn from(source: Error) -> UpdateLinkError
fn from(source: Error) -> UpdateLinkError
Source§impl From<MigrateError> for Error
Available on crate feature migrate only.
impl From<MigrateError> for Error
migrate only.Source§fn from(error: MigrateError) -> Error
fn from(error: MigrateError) -> Error
Auto Trait Implementations§
impl Freeze for Error
impl !RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl !UnwindSafe for Error
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToCompactString for Twhere
T: Display,
impl<T> ToCompactString for Twhere
T: Display,
Source§fn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>
fn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>
ToCompactString::to_compact_string() Read moreSource§fn to_compact_string(&self) -> CompactString
fn to_compact_string(&self) -> CompactString
CompactString. Read moreSource§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.