Given following code: ``` mod raspberry { pub struct Banana; } pub struct Peach; pub trait Apple { type Juice; } impl Apple for Peach { type Juice = raspberry::Banana; } ``` The generated documentation will not include documentation for `<Peach as Apple>::Juice`. 