summaryrefslogtreecommitdiff
path: root/exercises/structs/README.md
blob: afbc72c8063e3ad8453eaf79ef83ed0e198155b8 (plain)
1
2
3
4
5
6
7
### Structs

Rust has three struct types: a classic c struct, a tuple struct, and a unit struct.

#### Book Sections

- [Structures](https://doc.rust-lang.org/rust-by-example/custom_types/structs.html)