Back to Rust Lang

Enums

redirects/enums.md

latest499 B
Original Source

% 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: