Trait rusqlite::OptionalExtension[][src]

pub trait OptionalExtension<T> {
    fn optional(self) -> Result<Option<T>>;
}
Expand description

Required methods

Converts a Result<T> into a Result<Option<T>>.

By default, Rusqlite treats 0 rows being returned from a query that is expected to return 1 row as an error. This method will handle that error, and give you back an Option<T> instead.

Implementors