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),
}pub type FromSqlResult<T> = Result<T, FromSqlError>;Result type for implementors of the FromSql trait.
enum FromSqlResult<T> {
Ok(T),
Err(FromSqlError),
}