1周前 · software Rust 中的数据 vs 行为 Rust 中的结构体:建模数据 在 Rust 中,结构体纯粹用于表示数据。 ```rust struct Rect { width: f32, height: f32, } ``` 结构体不定义行为…