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.
27 lines
491 B
27 lines
491 B
struct User {
|
|
active: bool,
|
|
username: String,
|
|
email: String,
|
|
sign_in_count: u64,
|
|
}
|
|
|
|
// ANCHOR: here
|
|
fn main() {
|
|
// --snip--
|
|
// ANCHOR_END: here
|
|
|
|
let user1 = User {
|
|
email: String::from("someone@example.com"),
|
|
username: String::from("someusername123"),
|
|
active: true,
|
|
sign_in_count: 1,
|
|
};
|
|
// ANCHOR: here
|
|
|
|
let user2 = User {
|
|
email: String::from("another@example.com"),
|
|
..user1
|
|
};
|
|
}
|
|
// ANCHOR_END: here
|