#[non_exhaustive]pub enum FromSqlError {
InvalidType,
OutOfRange(i64),
InvalidBlobSize {
expected_size: usize,
blob_size: usize,
},
Other(Box<dyn Error + Send + Sync + 'static>),
}
Expand description
Enum listing possible errors from FromSql
trait.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
InvalidType
Error when an SQLite value is requested, but the type of the result cannot be converted to the requested Rust type.
OutOfRange(i64)
Error when the i64 value returned by SQLite cannot be stored into the requested type.
InvalidBlobSize
Error when the blob result returned by SQLite cannot be stored into the requested type due to a size mismatch.
Fields
Other(Box<dyn Error + Send + Sync + 'static>)
An error case available for implementors of the FromSql
trait.
Implementations§
Source§impl FromSqlError
impl FromSqlError
Sourcepub fn other<E: Error + Send + Sync + 'static>(error: E) -> Self
pub fn other<E: Error + Send + Sync + 'static>(error: E) -> Self
Converts an arbitrary error type to FromSqlError
.
This is a convenience function that boxes and unsizes the error type. It’s main purpose is
to be usable in the map_err
method. So instead of
result.map_err(|error| FromSqlError::Other(Box::new(error))
you can write
result.map_err(FromSqlError::other)
.
Trait Implementations§
Source§impl Debug for FromSqlError
impl Debug for FromSqlError
Source§impl Display for FromSqlError
impl Display for FromSqlError
Source§impl Error for FromSqlError
impl Error for FromSqlError
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 From<FromSqlError> for Error
The conversion isn’t precise, but it’s convenient to have it
to allow use of get_raw(…).as_…()?
in callbacks that take Error
.
impl From<FromSqlError> for Error
The conversion isn’t precise, but it’s convenient to have it
to allow use of get_raw(…).as_…()?
in callbacks that take Error
.