Enum rusqlite::types::FromSqlError
[−]
[src]
pub enum FromSqlError { InvalidType, OutOfRange(i64), Other(Box<Error + Send + Sync>), }
Enum listing possible errors from FromSql
trait.
Variants
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.
Other(Box<Error + Send + Sync>)
An error case available for implementors of the FromSql
trait.