pub trait OptionHelper { fn on_none<F: FnOnce()>(self, f: F) -> Self; }
Helper operations on Option<T>.
Option<T>