-
Hi, I'm starting to learn Rust and Bevy using Neovim with Rust Analyzer as language server. So far it works just fine. I have one question, though: When I have the following function: fn greet_people(query: Query<(&Name, &Position), (With<Person>, With<Position>)>) {
for (name, pos) in query.iter() {
println!("hello {} at {}/{}!", name.0, pos.x, pos.y);
}
} Rust analyzer shows the types of Thanks, |
Beta Was this translation helpful? Give feedback.
Answered by
bjorn3
Jul 3, 2022
Replies: 1 comment 4 replies
-
Either chalk is not able to resolve all types or you don't have proc macros enabled. |
Beta Was this translation helpful? Give feedback.
4 replies
Answer selected by
yngwi
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Either chalk is not able to resolve all types or you don't have proc macros enabled.