summaryrefslogtreecommitdiffstats
path: root/src/doc/book/redirects/enums.md
blob: c770d6b001ffdd0e94a9535680fc41ac189b16f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
% Enums

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

> Enums allow you to define a type by enumerating its possible values.

```rust
enum IpAddrKind {
    V4,
    V6,
}
```

---

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

* **[in the current edition: Ch 6.01 — Defining an Enum][2]**
* <small>[In the first edition: Ch 3.13 — Enums][1]</small>


[1]: https://doc.rust-lang.org/1.30.0/book/first-edition/enums.html
[2]: ch06-01-defining-an-enum.html