1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-04-04 17:54:19 +02:00

Update destructuring-enums.md (#231)

This commit is contained in:
Igor Petruk 2023-01-23 11:40:02 +00:00 committed by GitHub
parent ef119bc0d3
commit 94ed176761
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,3 +29,11 @@ fn main() {
Here we have used the arms to _destructure_ the `Result` value. In the first
arm, `half` is bound to the value inside the `Ok` variant. In the second arm,
`msg` is bound to the error message.
<details>
Consider demonstrating what happens if you add the third enum variant. Rust
will try to be helpful and the code won't compile, because you haven't handled
the new case in your match statements.
</details>