2018-04-19 19:34:31 +00:00
|
|
|
error: you seem to be trying to use match to destructure a single infallible pattern. Consider using `let`
|
2018-10-06 16:18:06 +00:00
|
|
|
--> $DIR/infallible_destructuring_match.rs:28:5
|
2018-04-19 19:34:31 +00:00
|
|
|
|
|
2018-10-06 16:18:06 +00:00
|
|
|
28 | / let data = match wrapper {
|
|
|
|
29 | | SingleVariantEnum::Variant(i) => i,
|
|
|
|
30 | | };
|
2018-04-19 19:34:31 +00:00
|
|
|
| |______^ help: try this: `let SingleVariantEnum::Variant(data) = wrapper;`
|
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::infallible-destructuring-match` implied by `-D warnings`
|
2018-04-19 19:34:31 +00:00
|
|
|
|
|
|
|
error: you seem to be trying to use match to destructure a single infallible pattern. Consider using `let`
|
2018-10-06 16:18:06 +00:00
|
|
|
--> $DIR/infallible_destructuring_match.rs:49:5
|
2018-04-19 19:34:31 +00:00
|
|
|
|
|
2018-10-06 16:18:06 +00:00
|
|
|
49 | / let data = match wrapper {
|
|
|
|
50 | | TupleStruct(i) => i,
|
|
|
|
51 | | };
|
2018-04-19 19:34:31 +00:00
|
|
|
| |______^ help: try this: `let TupleStruct(data) = wrapper;`
|
|
|
|
|
|
|
|
error: you seem to be trying to use match to destructure a single infallible pattern. Consider using `let`
|
2018-10-06 16:18:06 +00:00
|
|
|
--> $DIR/infallible_destructuring_match.rs:70:5
|
2018-04-19 19:34:31 +00:00
|
|
|
|
|
2018-10-06 16:18:06 +00:00
|
|
|
70 | / let data = match wrapper {
|
|
|
|
71 | | Ok(i) => i,
|
|
|
|
72 | | };
|
2018-04-19 19:34:31 +00:00
|
|
|
| |______^ help: try this: `let Ok(data) = wrapper;`
|
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|