trpl-zh-cn/listings/ch05-using-structs-to-structure-related-data/listing-05-01/src/main.rs
2022-02-06 16:43:51 +08:00

11 lines
149 B
Rust
Executable File

// ANCHOR: here
struct User {
active: bool,
username: String,
email: String,
sign_in_count: u64,
}
// ANCHOR_END: here
fn main() {}