1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2025-05-23 22:40:20 +02:00

9 lines
272 B
Markdown
Raw Normal View History

2019-07-27 22:14:48 +07:00
### Structs
2019-05-25 06:39:58 -05:00
Rust has three struct types: a classic C struct, a tuple struct, and a unit struct.
2019-05-25 06:39:58 -05:00
#### Book Sections
2020-12-15 00:32:46 -07:00
- [Structures](https://doc.rust-lang.org/book/ch05-01-defining-structs.html)
- [Method Syntax](https://doc.rust-lang.org/book/ch05-03-method-syntax.html)