Closed
Description
Currently on nightly the declaration for IntoIterator
looks like:
While the actual declaration with attributes stripped is:
pub trait IntoIterator {
type Item;
type IntoIter: Iterator<Item = Self::Item>;
fn into_iter(self) -> Self::IntoIter;
}
Previously up till 1.48.0 this rendered as:
Which is not great, but at least it has the information there. I tried to identify the PR which changed this in 1.49.0, but skimming the list from a few search queries none of them stood out to me.