如果我将字符串文字声明为:
let text = "this is text";
text. // Racer returns no completion options
在text.
但是,如果我将字符串文字声明为:
let text: String = "this is text";
text. // Racer returns many completion options
在输入text.
我不怀疑Racer有任何问题,而是我对Rust字符串的理解。有人可以向我解释为什么Racer没有为第一个例子返回任何完成选项,以及我如何能够看到text
可以使用哪些方法?