trpl-zh-cn/listings/ch06-enums-and-pattern-matching/listing-06-04/src/main.rs

18 lines
238 B
Rust
Raw Normal View History

2022-02-06 16:43:51 +08:00
// ANCHOR: here
#[derive(Debug)] // so we can inspect the state in a minute
enum UsState {
Alabama,
Alaska,
// --snip--
}
enum Coin {
Penny,
Nickel,
Dime,
Quarter(UsState),
}
// ANCHOR_END: here
fn main() {}