Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
warning: redundant pattern matching, consider using `is_err()` --> src/race.rs:354:20 | 354 | if let Err(_) = exchange { | -------^^^^^^----------- help: try this: `if exchange.is_err()` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_pattern_matching = note: `#[warn(clippy::redundant_pattern_matching)]` on by default
- Loading branch information