pub trait StoreResultExtensions<T> {
    // Required method
    fn unwrap_option(self) -> Option<T>;
}

Required Methods§

source

fn unwrap_option(self) -> Option<T>

Unwrap or assert that the error is key not fund in which case None is returned

Implementors§