我无法导入StrBuf
。
下面是一个演示我的问题的示例程序:
use std::strbuf::StrBuf;
fn main() {}
rustc test.rs给出了以下错误:
test.rs:1:5: 1:16 error: unresolved import: there is no `strbuf` in `std`
test.rs:1 use std::strbuf;
^~~~~~~~~~~
test.rs:1:5: 1:16 error: failed to resolve import `std::strbuf`
test.rs:1 use std::strbuf;
^~~~~~~~~~~
error: aborting due to 2 previous errors
发生什么事?
(我使用的是0.10版,至少符合
rustc --version
) 最佳答案
似乎0.10
版本的锈没有StrBuf。您可能希望更新到最新的nightly以使用StrBuf
。
否则使用~str
。它应该有大多数StrBuf
的方法。
关于import - 无法导入StrBuf?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23366477/