wscript: structs, enums, methods
struct/enum declarations, impl blocks, and the implicit by-reference self.
rust
}
Enums carry data (unit, tuple, or struct variants). Methods live in impl blocks; self is implicit and always by reference (there is no &). Match on enums with pattern matching.