pub trait OptionalExtension<T> {
// Required method
fn optional(self) -> Result<Option<T>, Error>;
}
Expand description
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.