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
In Cargo.toml dependencies:
Cargo.toml
derive_more = "0.99.10"
In code:
use derive_more::{From, Into, Add, AddAssign, Sum};
Using the VSCode extension it highlights all of the imports (From, Into, etc.) as unresolved import.
From
Into
unresolved import
The text was updated successfully, but these errors were encountered:
You can enable proc-macro support using
{ "rust-analyzer.cargo.loadOutDirsFromCheck": true, "rust-analyzer.procMacro.enable": true, }
Sorry, something went wrong.
Ooo thanks, presumably there's some downside that explains why this isn't enabled by default?
#6053 (comment)
Ah, slower. Got it.
derive_more
No branches or pull requests
In
Cargo.toml
dependencies:In code:
Using the VSCode extension it highlights all of the imports (
From
,Into
, etc.) asunresolved import
.The text was updated successfully, but these errors were encountered: