pub trait OptionHelper {
    fn on_none<F: FnOnce()>(self, f: F) -> Self;
}
Expand description

Helper operations on Option<T>.

Required Methods§

Implementations on Foreign Types§

Implementors§