Open
Description
As an example, generate documentation for this:
#![crate_type="lib"]
pub trait Trait { }
impl<T> Trait for Vec<T> { }
On the docs for the Trait
trait, there will be an Implementors section like this:
Note that the Vec
link goes to docs for the collections
crate and not to docs for std
. Since the 1.0 release will not host documentation for crates behind the facade, this will lead to broken documentation links for third-party crates.