struct 结构体
rust
struct SeaCreature {
// String 是个结构体
animal_type: String,
name: String,
arms: i32,
legs: i32,
weapon: String,
}