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
I would like two imports from the same module:
use std::time::Duration; use std::time::Instant;
To become a single import list:
use std::time::{Duration, Instant};
Relatedly, i'd like this a duplicate import:
use std::time::Duration; use std::time::Duration;
To become single:
use std::time::Duration;
!
And finally, it would be nice if there was an option to have turn an import of a module and some things from inside it:
use std::thread; use std::thread::{Builder, JoinHandle};
Into a single import list using self for the module:
use std::thread::{self, Builder, JoinHandle};
The text was updated successfully, but these errors were encountered:
Any progress here?
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
I would like two imports from the same module:
To become a single import list:
Relatedly, i'd like this a duplicate import:
To become single:
!
And finally, it would be nice if there was an option to have turn an import of a module and some things from inside it:
Into a single import list using self for the module:
The text was updated successfully, but these errors were encountered: