This repository has been archived on 2025-01-25. You can view files and clone it, but cannot push or open issues or pull requests.
2024-10-29 11:28:19 +01:00
..
2024-10-29 11:28:19 +01:00
2024-10-29 11:28:19 +01:00
2024-10-29 11:28:19 +01:00
2024-10-15 16:07:47 +02:00

Enums

Rust allows you to define types called "enums" which enumerate possible values. Enums are a feature in many languages, but their capabilities differ in each language. Rusts enums are most similar to algebraic data types in functional languages, such as F#, OCaml, and Haskell. Useful in combination with enums is Rust's "pattern matching" facility, which makes it easy to run different code for different values of an enumeration.

Further information