trpl-zh-cn/listings/ch05-using-structs-to-structure-related-data/listing-05-01/src/main.rs

11 lines
149 B
Rust
Raw Normal View History

2022-02-06 16:43:51 +08:00
// ANCHOR: here
struct User {
active: bool,
username: String,
email: String,
sign_in_count: u64,
}
// ANCHOR_END: here
fn main() {}