We can use or_else and ? to return Err early if we encounter None:
Err
None
let o = None; let x = o.ok_or(666)?;
But what if we