One interesting thing that Rust has is structure union syntax sugar with pattern ... enum OptionalInt { Value(int), Missing, } let x = Value(5); match x ...
確定! 回上一頁