如何配置 Clion,以便嵌入类型提示出现在 Rust 代码中?

How to configure Clion, so that inlay type-hints show up in Rust code?

我正在使用 clion 对 rust 进行编程(最新版本的 clion 和 rust 插件 https://plugins.jetbrains.com/plugin/8182-rust)。我试图让推断类型自动显示在编辑器 fx 中。

let x: *i32* = 1; 

当我写 "let x = 1;" 时推断出“i32”。然而,这并没有发生,当鼠标悬停在 "x" 上时,我只能看到“i32”,但是“i32”没有(动态地)插入到代码中。我已经在 clion 首选项中启用了所有 "hints",但没有任何效果,有什么想法吗?我需要另一个插件来实现吗?谢谢

我想你要找的是"Inlay Hints",它应该默认启用。

选项在Settings -> Editor -> Inlay Hints -> Rust -> Type hints

设置面板:

结果: