rustlings/exercises/07_structs
2024-01-31 16:28:39 -05:00
..
README.md Update Exercises Directory Names to Reflect Order 2023-10-16 07:37:12 -04:00
structs1.rs Complete structs exercise 2024-01-31 16:28:39 -05:00
structs2.rs Complete structs exercise 2024-01-31 16:28:39 -05:00
structs3.rs Complete structs exercise 2024-01-31 16:28:39 -05:00

Structs

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

Further information