型を整数から文字列に変換するコードをコンパイルできません。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
、それはリテラル文字列ではなく戻ります。