I'm using rust-analyzer 0.3.193-nightly with VSCode 1.45.1, Windows 10 x64.
On a struct, when I type ::
, I'd like to see the static methods only. Non-static methods are also showing up in suggestion list.
I the example below, I would not like to see calc_num
appear in suggestions, since it's a non-static method:
Is there a way to hide calc_num
from the suggestions, in the example above? I searched rust-analyzer options and I found nothing.