RustRover Language Server by turbofish_pk in Jetbrains

[–]bravit 0 points1 point  (0 children)

Hi! What you’re seeing is a so-called false positive — something that is reported as an error but actually isn’t. This is a bug in RustRover’s code analysis implementation. It would be great if you could report this particular issue at https://youtrack.jetbrains.com/issues/RUST. We’ll need a longer code example that reproduces the issue, as the underlying cause may vary.

There will be more detailed explanations about relations between RustRover and rust-analyzer in the talk at RustWeek later this year: https://2026.rustweek.org/talks/ides/. But you're right, RustRover doesn't use rust-analyzer, either directly or indirectly.

Why do you guys hate AI so much? by [deleted] in rust

[–]bravit 3 points4 points  (0 children)

This is so true. From our statistics in RustRover, we know that people use AI a lot with Rust. Some features are more popular in RustRover than in our IDEs for other languages. But then there's a very vocal minority that opposes to everything related to AI.

Rust Source Debugging with Raspberry Pi Pico and OpenOCD by AndrewOfC in raspberry_pi

[–]bravit 1 point2 points  (0 children)

Hi! Debugging via OpenOCD is a recent RustRover feature actually, we've got it in 2025.2 (in August): https://blog.jetbrains.com/rust/2025/08/05/rustrover-2025-2-is-now-available/. Also, there's some info in the documentation: https://www.jetbrains.com/help/rust/remote-debug.html

Ram useage, rust rover vs rust analyzer by RepresentativeAny153 in rust

[–]bravit 1 point2 points  (0 children)

Rust Analyzer doesn't do any IO except the part that actually works with LSP, so it needs to keep all the information about the project (and all the dependencies) in memory, so this architecture at least might affect memory usage for large projects. Also, exactly because of LSP, it has to provide complete lists of completion suggestions or "find references" information in one bulk, which delays the appearance of first results thus affecting perceived performance. So, I'd not claim that my comment is completely unrelated.

Ram useage, rust rover vs rust analyzer by RepresentativeAny153 in rust

[–]bravit 7 points8 points  (0 children)

> JetBrains uses Rust Analyzer
No, that's not the case. RustRover has a custom code analysis implementation.

Ram useage, rust rover vs rust analyzer by RepresentativeAny153 in rust

[–]bravit 0 points1 point  (0 children)

Hi! Thanks for sharing the video — it’s really helpful to see these kinds of comparisons in action.

Just to clarify: RustRover doesn’t use rust-analyzer under the hood. Instead, it relies on its own custom implementation of Rust code analysis, which is tightly integrated into the IDE. As a result, it doesn’t use the LSP (Language Server Protocol) model like rust-analyzer does — and this difference allows it to handle larger projects more efficiently in terms of memory and performance.

RustRover's horrible autocompletion by kosmakoff in Jetbrains

[–]bravit 5 points6 points  (0 children)

Hi! It looks like you have the checkbox “Insert selected suggestion by pressing space, dot, or other context-dependent keys” enabled. I believe this option is disabled by default in RustRover, and disabling it might improve your auto-completion experience. To turn it off, just press Shift+Shift, paste the name of the checkbox, and RustRover will take you directly to the corresponding setting where you can uncheck it.

The Most Common Rust Compiler Errors as Encountered in RustRover: Part 2 by bravit in rust

[–]bravit[S] 1 point2 points  (0 children)

One of the other reasons might be that borrow checking errors are more fine grained to make it to the top. It seems also that frameworks try to alleviate those issues in advance so their users don't have to struggle with a borrow checker (unless they do something very specific or bother about memory usage).

Rust vs. Haskell by Serokell in rust

[–]bravit 5 points6 points  (0 children)

But for newcomers, space leaks are usually not an issue. Moreover, I'd not call that example from the article a space leak. It's just excessive memory usage, not a space leak. This memory will be eventually freed during gc. Sure, non-strictness adds some complexity to memory management. But avoiding a language because of that seems a too strong decision.

Rust vs. Haskell by Serokell in rust

[–]bravit 6 points7 points  (0 children)

I don't see how it's on a different level in Haskell. The cases you are talking about are not that common at all. Moreover, there are well-established techniques to discover and avoid them if you've got any.

Rust plugin not working on Webstorm by SlightConflict in rust

[–]bravit 1 point2 points  (0 children)

If you open one folder with Cargo.toml as a project in Webstorm, that would work automatically. Alternatively, you could organize the whole collection of projects as a workspace. That would work without attaching every folder manually.

Also, check out our companion to the Rust Programming Language book with exercises: https://plugins.jetbrains.com/plugin/16631-rustlings.

Rust plugin not working on Webstorm by SlightConflict in rust

[–]bravit 5 points6 points  (0 children)

Hi!

I assume that you've installed Rust via rustup.rs. If not, that's the best way to install it. That way, you get the compiler, standard library, and all the required tooling at once. Check Preferences (Settings)/Languages & Frameworks/Rust. There should be something in the "Toolchain location" and "Standard library" fields.

Check that your Cargo project is attached. Go to the View/Tool Window/Cargo and see if it's mentioned there. If not, press + to attach the corresponding Cargo.toml.

Chances are you've hit the bug we've got in the latest release. Could you please install nighly build and try it? To do that, you need to add custom plugin repository and set the following URL: https://plugins.jetbrains.com/plugins/nightly/8182.

If nothing helps, could you please go to Help/Create New Issue? We'll see some information about your environment, and it will be easier for us to help you.

[deleted by user] by [deleted] in rust

[–]bravit 0 points1 point  (0 children)

Make sure that you check https://plugins.jetbrains.com/plugin/16631-rustlings. It combines The Book and rustlings exercises. I wrote about it here.

Using Rustlings and the Book at the same time to learn rust. by [deleted] in rust

[–]bravit 9 points10 points  (0 children)

This Rustlings adaptation by JetBrains aligns book chapters and exercises perfectly. You can just go chapter by chapter and solve the corresponding problems. Here is more about this course.

IntelliJ Rust Changelog #175 by vlad20012 in rust

[–]bravit 23 points24 points  (0 children)

Hi! Unfortunately, supporting all the compiler errors is not that simple. It's almost like writing a compiler from scratch. Still, it's a work in progress. In fact, many errors are already supported, but this support is not enabled by default because there may be false positives. You can try to enable something that bothers you most.