Closed
Description
You'd expect the impl for the boxed type to show up, but it doesn't. I seem to recall rustdoc displays impls anytime the type is contained in the generics, though, so it's odd that it's not happening.
pub struct MyType;
impl Iterator for Box<MyType> {
type Item = ();
fn next(&mut self) -> Option<Self::Item> {
todo!()
}
}
Originally reported by @danielhenrymantilla (with Pin<&mut MyType>
) on Discord.