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
playground link
use std::ops; pub trait Slice : ops::Index<ops::Range<usize>, Output = Self> + ops::Index<ops::RangeFrom<usize>, Output = Self> + ops::Index<ops::RangeFull, Output = Self> + ops::Index<ops::RangeTo<usize>, Output = Self> // + ops::Index<ops::RangeInclusive<usize>, Output = Self> // + ops::Index<ops::RangeToInclusive<usize>, Output = Self> + ops::Index<ops::RangeTo<usize>, Output = Self> { }
when formatted gives
use std::ops; pub trait Slice : ops::Index<ops::Range<usize>, Output = Self> + ops::Index<ops::RangeFrom<usize>, Output = Self> + ops::Index<ops::RangeFull, Output = Self> + ops::Index<ops::RangeTo<usize>, Output = Self> + ops::Index<ops::RangeTo<usize>, Output = Self> // + ops::Index<ops::RangeInclusive<usize>, Output = Self> // + ops::Index<ops::RangeToInclusive<usize>, Output = Self> + ops::Index<ops::RangeTo<usize>, Output = Self> { }
Each subsequent format duplicates the line above the comment again.
The text was updated successfully, but these errors were encountered:
Thank you for filing an issue, I will close this as this is a duplicate of #2055.
Sorry, something went wrong.
My search has a long way to improve... I looked but did not find the preexisting report. Sorry for the dupe!
No branches or pull requests
playground link
when formatted gives
Each subsequent format duplicates the line above the comment again.
The text was updated successfully, but these errors were encountered: