mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-05-23 01:58:09 +08:00
11 lines
149 B
Rust
Executable File
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() {}
|