You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running assists like "Implement missing members" or "Fill match arms", rust-analyzer will qualify all paths in the inserted code as necessary for them to resolve correctly. However, this can create rather long paths, which require many uses of the "Replace qualified path with use" assist to make the code more readable.
This could be fixed by having the "Replace qualified path with use" assist not just replace the path it is invoked on, but all paths in the module that refer to the imported item.