[][src]Trait rusqlite::OptionalExtension

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

Required methods

fn optional(self) -> Result<Option<T>>

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.

Loading content...

Implementors

impl<T> OptionalExtension<T> for Result<T>[src]

Loading content...