Converts a Result into an Option wrapping the successful value.
Result
Option
Result to convert.
None if the result is Err, or Some wrapping the result value if it's Ok.
None
Err
Some
Ok
Converts a
Result
into anOption
wrapping the successful value.