mirror of https://github.com/KaiserY/trpl-zh-cn
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
904 B
20 lines
904 B
$ cargo run
|
|
Compiling patterns v0.1.0 (file:///projects/patterns)
|
|
error[E0005]: refutable pattern in local binding: `None` not covered
|
|
--> src/main.rs:3:9
|
|
|
|
|
3 | let Some(x) = some_option_value;
|
|
| ^^^^^^^ pattern `None` not covered
|
|
|
|
|
= note: `let` bindings require an "irrefutable pattern", like a `struct` or an `enum` with only one variant
|
|
= note: for more information, visit https://doc.rust-lang.org/book/ch18-02-refutability.html
|
|
note: `Option<i32>` defined here
|
|
= note: the matched value is of type `Option<i32>`
|
|
help: you might want to use `if let` to ignore the variant that isn't matched
|
|
|
|
|
3 | let x = if let Some(x) = some_option_value { x } else { todo!() };
|
|
| ++++++++++ ++++++++++++++++++++++
|
|
|
|
For more information about this error, try `rustc --explain E0005`.
|
|
error: could not compile `patterns` due to previous error
|