We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Result<T,E>.map_or(None, Some(T))
Result<T,E> has a method to adapt into an Option<T>, Clippy doesn't catch attempts to rewrite this method as Result<T,E>.map_or(None, Some(T))
Result<T,E>
Option<T>