pub trait OptionExt<T> { // Required methods fn ok(self) -> Result<T>; fn okor(self, err: &'static str) -> Result<T>; }