Bir türü tam sayıdan dizeye dönüştüren kodu derleyemiyorum. Rust for Rubyists eğitiminden çeşitli tür dönüşümleri olan bir örnek çalıştırıyorum, örneğin :
"Fizz".to_str()
ve num.to_str()
(nerede num
bir tam sayıdır).
Sanırım bu to_str()
işlev çağrılarının çoğu (hepsi değilse de) kullanımdan kaldırıldı. Bir tamsayıyı dizeye dönüştürmenin şu anki yolu nedir?
Aldığım hatalar:
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()
yöntem vardır, ancak buString
bir değişmez dize değil döndürür .