I just started learning Rust and tried to write make a simple HTTP request using reqwest
I tried to create a reqwest::Client
, but VSCode didn't give me a corresponding completion.
But after I wrote the code myself, VSCode showed me that it knows the type of the expression.
And after I wrote let res = client.
, it still does not give me any completion about this.
Why can this happen?