]> git.proxmox.com Git - rustc.git/blob - src/doc/book/listings/ch05-using-structs-to-structure-related-data/no-listing-02-reference-in-struct/src/main.rs
New upstream version 1.56.0~beta.4+dfsg1
[rustc.git] / src / doc / book / listings / ch05-using-structs-to-structure-related-data / no-listing-02-reference-in-struct / src / main.rs
1 struct User {
2 active: bool,
3 username: &str,
4 email: &str,
5 sign_in_count: u64,
6 }
7
8 fn main() {
9 let user1 = User {
10 email: "someone@example.com",
11 username: "someusername123",
12 active: true,
13 sign_in_count: 1,
14 };
15 }