Enum rusqlite::types::FromSqlError [] [src]

pub enum FromSqlError {
    InvalidType,
    OutOfRange(i64),
    Other(Box<Error + Send + Sync>),
}

Enum listing possible errors from FromSql trait.

Variants

Error when an SQLite value is requested, but the type of the result cannot be converted to the requested Rust type.

Error when the i64 value returned by SQLite cannot be stored into the requested type.

An error case available for implementors of the FromSql trait.

Trait Implementations

impl Debug for FromSqlError
[src]

Formats the value using the given formatter.

impl Display for FromSqlError
[src]

Formats the value using the given formatter.

impl Error for FromSqlError
[src]

A short description of the error. Read more

The lower-level cause of this error, if any. Read more