macro_rules! or_return_none {
($e:expr) => { ... };
}Expand description
Similar to ? in a context that returns Option, this propagates
None values, but wraps them in Ok. I.e. behaves like ?
except if the Option context is wrapped in a Result.