-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinheritance.rs
63 lines (50 loc) · 1.16 KB
/
inheritance.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
trait Drummer {
// just the interface
// fn play_drums(&self);
// default imlpementation
fn play_drums(&self) {
println!("an amazing beat is played");
}
}
struct JoshFreese;
impl Drummer for JoshFreese {}
struct JonahFalco;
impl Drummer for JonahFalco {
fn play_drums(&self) {
println!("falco is ripping those drums");
}
}
fn needs_drummer(musician: &impl Drummer) {
musician.play_drums();
}
trait Guitarist {
fn play_guitar(&self) {
println!("a heavy guitar riff is played");
}
}
struct JamesHetfield;
impl Guitarist for JamesHetfield {}
// Super trait
trait MultiMusician: Guitarist + Drummer {}
struct DaveGrohl;
impl MultiMusician for DaveGrohl {}
impl Drummer for DaveGrohl {}
impl Guitarist for DaveGrohl {
fn play_guitar(&self) {
println!("DaveGrohl is floating");
}
}
fn record_song(musician: &impl MultiMusician) {
musician.play_drums();
musician.play_guitar();
}
pub fn main() {
let jf = JoshFreese;
needs_drummer(&jf);
let jf = JonahFalco;
needs_drummer(&jf);
let jh = JamesHetfield;
jh.play_guitar();
let dg = DaveGrohl;
record_song(&dg);
}