All issues
Anti-pattern
Bug risk
Coverage
Documentation
Performance
Secrets
Security
Style
Type check
Patterns of the form name @ _ are redundant. It is always more readable to use a direct binding.
name @ _
Prefer a direct binding, name over name @ _.
name
match v { Some(x) => (), y @ _ => (), }
match v { Some(x) => (), y => (), }