summaryrefslogtreecommitdiffstats
path: root/src/doc/book/redirects/trait-objects.md
blob: 3200e26a15a189482dd9ba6bfbe1dfd055b697ce (plain)
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
64
65
66
67
68
% Trait Objects

<small>There is a new edition of the book and this is an old link.</small>

> Trait objects combine the data made up of the pointer to a concrete object with the behavior of the methods defined in the trait.
> A trait defines behavior that we need in a given situation.
> We can then use a trait as a trait object in places where we would use a concrete type or a generic type.

```rust,ignore
pub struct InputBox {
    pub label: String,
}

impl Draw for InputBox {
    fn draw(&self) {
        // Code to actually draw an input box
    }
}

pub struct Button {
    pub label: String,
}

impl Draw for Button {
    fn draw(&self) {
        // Code to actually draw a button
    }
}

pub struct Screen<T: Draw> {
    pub components: Vec<T>,
}

impl<T> Screen<T>
    where T: Draw {
    pub fn run(&self) {
        for component in self.components.iter() {
            component.draw();
        }
    }
}

fn main() {
    let screen = Screen {
        components: vec![
            Box::new(InputBox {
                label: String::from("OK"),
            }),
            Box::new(Button {
                label: String::from("OK"),
            }),
        ],
    };

    screen.run();
}
```

---

Here are the relevant sections in the new and old books:

* **[in the current edition: Ch 17.02 — Trait Objects][2]**
* <small>[In the first edition: Ch 3.22 — Trait Objects][1]</small>


[1]: https://doc.rust-lang.org/1.30.0/book/first-edition/trait-objects.html
[2]: ch17-02-trait-objects.html