mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-15 01:17:16 +00:00
128 lines
4.8 KiB
Text
128 lines
4.8 KiB
Text
error: redundant pattern matching, consider using `is_pending()`
|
|
--> $DIR/redundant_pattern_matching_poll.rs:15:12
|
|
|
|
|
LL | if let Pending = Pending::<()> {}
|
|
| -------^^^^^^^---------------- help: try this: `if Pending::<()>.is_pending()`
|
|
|
|
|
= note: `-D clippy::redundant-pattern-matching` implied by `-D warnings`
|
|
|
|
error: redundant pattern matching, consider using `is_ready()`
|
|
--> $DIR/redundant_pattern_matching_poll.rs:17:12
|
|
|
|
|
LL | if let Ready(_) = Ready(42) {}
|
|
| -------^^^^^^^^------------ help: try this: `if Ready(42).is_ready()`
|
|
|
|
error: redundant pattern matching, consider using `is_ready()`
|
|
--> $DIR/redundant_pattern_matching_poll.rs:19:12
|
|
|
|
|
LL | if let Ready(_) = Ready(42) {
|
|
| -------^^^^^^^^------------ help: try this: `if Ready(42).is_ready()`
|
|
|
|
error: redundant pattern matching, consider using `is_ready()`
|
|
--> $DIR/redundant_pattern_matching_poll.rs:25:15
|
|
|
|
|
LL | while let Ready(_) = Ready(42) {}
|
|
| ----------^^^^^^^^------------ help: try this: `while Ready(42).is_ready()`
|
|
|
|
error: redundant pattern matching, consider using `is_pending()`
|
|
--> $DIR/redundant_pattern_matching_poll.rs:27:15
|
|
|
|
|
LL | while let Pending = Ready(42) {}
|
|
| ----------^^^^^^^------------ help: try this: `while Ready(42).is_pending()`
|
|
|
|
error: redundant pattern matching, consider using `is_pending()`
|
|
--> $DIR/redundant_pattern_matching_poll.rs:29:15
|
|
|
|
|
LL | while let Pending = Pending::<()> {}
|
|
| ----------^^^^^^^---------------- help: try this: `while Pending::<()>.is_pending()`
|
|
|
|
error: redundant pattern matching, consider using `is_ready()`
|
|
--> $DIR/redundant_pattern_matching_poll.rs:35:5
|
|
|
|
|
LL | / match Ready(42) {
|
|
LL | | Ready(_) => true,
|
|
LL | | Pending => false,
|
|
LL | | };
|
|
| |_____^ help: try this: `Ready(42).is_ready()`
|
|
|
|
error: redundant pattern matching, consider using `is_pending()`
|
|
--> $DIR/redundant_pattern_matching_poll.rs:40:5
|
|
|
|
|
LL | / match Pending::<()> {
|
|
LL | | Ready(_) => false,
|
|
LL | | Pending => true,
|
|
LL | | };
|
|
| |_____^ help: try this: `Pending::<()>.is_pending()`
|
|
|
|
error: redundant pattern matching, consider using `is_pending()`
|
|
--> $DIR/redundant_pattern_matching_poll.rs:45:13
|
|
|
|
|
LL | let _ = match Pending::<()> {
|
|
| _____________^
|
|
LL | | Ready(_) => false,
|
|
LL | | Pending => true,
|
|
LL | | };
|
|
| |_____^ help: try this: `Pending::<()>.is_pending()`
|
|
|
|
error: redundant pattern matching, consider using `is_ready()`
|
|
--> $DIR/redundant_pattern_matching_poll.rs:51:20
|
|
|
|
|
LL | let _ = if let Ready(_) = poll { true } else { false };
|
|
| -------^^^^^^^^------- help: try this: `if poll.is_ready()`
|
|
|
|
error: redundant pattern matching, consider using `is_ready()`
|
|
--> $DIR/redundant_pattern_matching_poll.rs:55:20
|
|
|
|
|
LL | let _ = if let Ready(_) = gen_poll() {
|
|
| -------^^^^^^^^------------- help: try this: `if gen_poll().is_ready()`
|
|
|
|
error: redundant pattern matching, consider using `is_pending()`
|
|
--> $DIR/redundant_pattern_matching_poll.rs:57:19
|
|
|
|
|
LL | } else if let Pending = gen_poll() {
|
|
| -------^^^^^^^------------- help: try this: `if gen_poll().is_pending()`
|
|
|
|
error: redundant pattern matching, consider using `is_ready()`
|
|
--> $DIR/redundant_pattern_matching_poll.rs:73:12
|
|
|
|
|
LL | if let Ready(_) = Ready(42) {}
|
|
| -------^^^^^^^^------------ help: try this: `if Ready(42).is_ready()`
|
|
|
|
error: redundant pattern matching, consider using `is_pending()`
|
|
--> $DIR/redundant_pattern_matching_poll.rs:75:12
|
|
|
|
|
LL | if let Pending = Pending::<()> {}
|
|
| -------^^^^^^^---------------- help: try this: `if Pending::<()>.is_pending()`
|
|
|
|
error: redundant pattern matching, consider using `is_ready()`
|
|
--> $DIR/redundant_pattern_matching_poll.rs:77:15
|
|
|
|
|
LL | while let Ready(_) = Ready(42) {}
|
|
| ----------^^^^^^^^------------ help: try this: `while Ready(42).is_ready()`
|
|
|
|
error: redundant pattern matching, consider using `is_pending()`
|
|
--> $DIR/redundant_pattern_matching_poll.rs:79:15
|
|
|
|
|
LL | while let Pending = Pending::<()> {}
|
|
| ----------^^^^^^^---------------- help: try this: `while Pending::<()>.is_pending()`
|
|
|
|
error: redundant pattern matching, consider using `is_ready()`
|
|
--> $DIR/redundant_pattern_matching_poll.rs:81:5
|
|
|
|
|
LL | / match Ready(42) {
|
|
LL | | Ready(_) => true,
|
|
LL | | Pending => false,
|
|
LL | | };
|
|
| |_____^ help: try this: `Ready(42).is_ready()`
|
|
|
|
error: redundant pattern matching, consider using `is_pending()`
|
|
--> $DIR/redundant_pattern_matching_poll.rs:86:5
|
|
|
|
|
LL | / match Pending::<()> {
|
|
LL | | Ready(_) => false,
|
|
LL | | Pending => true,
|
|
LL | | };
|
|
| |_____^ help: try this: `Pending::<()>.is_pending()`
|
|
|
|
error: aborting due to 18 previous errors
|
|
|