Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
lint: Silence a clippy::single_match warning
This warning is documented as being just for "readability" via making the body less nested: https://rust-lang.github.io/rust-clippy/master/index.html#single_match But here, we have several neighboring matches on the same structure which can't be simplified this way. It's better to keep this bit parallel to those, rather than to simplify it in isolation.
- Loading branch information