Add suggestion when returning Result<_, A>
when Result<_, B>
is expected
#47560
Labels
A-diagnostics
Area: Messages for errors, warnings, and lints
A-suggestion-diagnostics
Area: Suggestions generated by the compiler applied by `cargo fix`
C-enhancement
Category: An issue proposing an enhancement or a PR with one.
D-newcomer-roadblock
Diagnostics: Confusing error or lint; hard to understand for new users.
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
When returning
Result<_, A>
butResult<_, B>
is expected andA: Into<B>
, provide a suggestion to returnOk(x?)
instead:Case taken from https://jvns.ca/blog/2018/01/13/rust-in-2018--way-easier-to-use/
The text was updated successfully, but these errors were encountered: