Appearance
Source Code
Checks for if let pattern matching that can be replaced by a simple comparison.
if let
if let Some(2) = a { // Code }
Could be replaced by
if a == Some(2) { // Code }