29 lines
1.1 KiB
Plaintext
29 lines
1.1 KiB
Plaintext
error: you seem to be trying to use match to destructure a single infallible pattern. Consider using `let`
|
|
--> $DIR/infallible_destructuring_match.rs:25:5
|
|
|
|
|
25 | / let data = match wrapper {
|
|
26 | | SingleVariantEnum::Variant(i) => i,
|
|
27 | | };
|
|
| |______^ help: try this: `let SingleVariantEnum::Variant(data) = wrapper;`
|
|
|
|
|
= note: `-D clippy::infallible-destructuring-match` implied by `-D warnings`
|
|
|
|
error: you seem to be trying to use match to destructure a single infallible pattern. Consider using `let`
|
|
--> $DIR/infallible_destructuring_match.rs:46:5
|
|
|
|
|
46 | / let data = match wrapper {
|
|
47 | | TupleStruct(i) => i,
|
|
48 | | };
|
|
| |______^ 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`
|
|
--> $DIR/infallible_destructuring_match.rs:67:5
|
|
|
|
|
67 | / let data = match wrapper {
|
|
68 | | Ok(i) => i,
|
|
69 | | };
|
|
| |______^ help: try this: `let Ok(data) = wrapper;`
|
|
|
|
error: aborting due to 3 previous errors
|
|
|