1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
struct IDCard {
name: String,
id: u32
}
impl IDCard {
fn print_info(&self) {
println!("I am {}, my ID number is {}", self.name, self.id);
}
}
fn main() {
let id_card = IDCard {name: String::from("Eric"), id: 266548};
id_card.print_info();
}
Press desired key combination and then press ENTER.