带有Racer代码完成的Rust Strings

时间:2016-10-28 12:00:31

标签: rust code-completion

如果我将字符串文字声明为:

let text = "this is text";
text.  // Racer returns no completion options

text.

类型后,Racer不会返回任何完成选项

但是,如果我将字符串文字声明为:

let text: String = "this is text";
text.  // Racer returns many completion options

在输入text.

后,Racer将返回完成选项

我不怀疑Racer有任何问题,而是我对Rust字符串的理解。有人可以向我解释为什么Racer没有为第一个例子返回任何完成选项,以及我如何能够看到text可以使用哪些方法?

0 个答案:

没有答案