We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Trait Bound
Currently, RA (Rust Analyzer) does not display Trait Bound in the function signature hints.
fn test<R: std::io::Read>(r: R) {} fn test1<R>(r: R) where R: std::io::Read {}
Current: (where R: std::io::Read not show)
where R: std::io::Read
Expected: Show Trait Bound just like hover
The text was updated successfully, but these errors were encountered:
Sounds fine by me, but should be gated behind the signatureInfo.detail config as a new variant (without changing the current default)
signatureInfo.detail
Sorry, something went wrong.
No branches or pull requests
Currently, RA (Rust Analyzer) does not display
Trait Bound
in the function signature hints.Current: (
where R: std::io::Read
not show)Expected:
Show
Trait Bound
just like hoverThe text was updated successfully, but these errors were encountered: