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
Example:
use std::rc::Rc; fn main() { struct Foo { a: i32, b: String, } let foo = Rc::new(Foo { a: 1, b: "Hello!".into(), }); foo.<|> }
Expected: The autocomplete at foo.<|> should show options for fields a and b.
foo.<|>
a
b
Actual: The autocomplete options do not include any of the fields from Foo.
Foo
The text was updated successfully, but these errors were encountered:
Duplicate of #1559, I don't think this has anything to do with the deref.
Sorry, something went wrong.
No branches or pull requests
Example:
Expected:
The autocomplete at
foo.<|>
should show options for fieldsa
andb
.Actual:
The autocomplete options do not include any of the fields from
Foo
.The text was updated successfully, but these errors were encountered: