为什么 Rust 整数类型很快就会被弃用?
Why will Rust integer types be deprecated soon?
我注意到 Rust std page 旁边的 u8
、i8
、u16
等等的弃用说明:
发生了什么事,替代品是什么?
类型本身并没有被弃用,只是被命名为例如的模块。 std::i8
其中包含常量。例如,std::i8::MIN
被替换为 i8::MIN
(docs)。弃用通知说:
Deprecating in a future Rust version: all constants in this module replaced by associated constants on i8
我注意到 Rust std page 旁边的 u8
、i8
、u16
等等的弃用说明:
发生了什么事,替代品是什么?
类型本身并没有被弃用,只是被命名为例如的模块。 std::i8
其中包含常量。例如,std::i8::MIN
被替换为 i8::MIN
(docs)。弃用通知说:
Deprecating in a future Rust version: all constants in this module replaced by associated constants on i8