276 B
276 B
Classes in Rust
Rust doesn't have classes like Java or other typical c style languages. Instead there are Structs and Traits.
Structs are responsible for storing data and nothing else. Traits define functions that can be used.