Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This one complains about if let Some(_) = option; which I still think is just as fine as if option.is_some(); `if let` is a nice Rust feature that works the same way on all enums, no reason to prefer option-specific methods like `is_some`.
- Loading branch information