Mutability. A const ant in Rust is immutable. You neither can reassign nor modify it: struct Foo(u32); const FOO: Foo = Foo(5); const mut ...
確定! 回上一頁