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.
TraitItemType and ImplItemType will need to hold generic parameters, not just an ident for the associated type.
rust-lang/rust#44265
trait StreamingIterator { type Item<'a>; fn next<'a>(&'a mut self) -> Option<Self::Item<'a>>; }