Type Alias rusqlite::types::FromSqlResult

source ·
pub type FromSqlResult<T> = Result<T, FromSqlError>;
Expand description

Result type for implementors of the FromSql trait.

Aliased Type§

enum FromSqlResult<T> {
    Ok(T),
    Err(FromSqlError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(FromSqlError)

Contains the error value