pub struct Foo { x: T, } pub trait Bar { type Fuu; fn foo(foo: Self::Fuu); } // @has doc_assoc_item/struct.Foo.html '//*[@class="impl"]' 'impl> Foo' impl> Foo { pub fn new(t: T) -> Foo { Foo { x: t, } } }