RustRover
 
2023.3
Get RustRover
Because RustRover 2023.3 is still in development, this documentation may not be entirely accurate and is subject to change.

Code completion

Last modified: 08 April 2024

Auto-completion for your Rust code works as you type, and you can also call it manually from Code | Code Completion in the main menu.

For example, completion is available for attributes and elements inside #[derive], including standard library traits:

https://resources.jetbrains.com/help/img/idea/2023.3/ri_completion_derive.png
Gif

Completion also works inside macro calls. The plugin knows the resulting macro substitution and suggests only the applicable items:

Completion for macro calls

Note that completion is available in doctest comments as well:

Completion in doctest comments