We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
use
Rustfmt sometimes removes comments in uses with {}. For example (diffs from cargo fmt -- --check):
{}
cargo fmt -- --check
-use a::{item /* comment */}; +use a::item;
With merge_imports = true:
merge_imports = true
-use a::{ - x, - // comment - item, -}; +use a::{item, x};