我无法编译将类型从整数转换为字符串的代码。我正在运行Rust for Rubyists教程中的示例,该示例具有各种类型转换,例如:
"Fizz".to_str()
和 num.to_str()
(其中num
是整数)。
我认为大多数(如果不是全部)这些to_str()
函数调用已被弃用。当前将整数转换为字符串的方法是什么?
我得到的错误是:
error: type `&'static str` does not implement any method in scope named `to_str`
error: type `int` does not implement any method in scope named `to_str`
to_string()
方法,但是返回String
而不是文字字符串。