最佳答案
我无法编译将类型从整数转换为字符串的代码。我正在运行一个来自 Rubyists 的 Rust 教程的例子,它有各种类型的转换,例如:
"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`