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.
As an example, generate documentation for this:
On the docs for the
Traittrait, there will be an Implementors section like this:impl<T> Trait for Vec<T>Note that the
Veclink goes to docs for thecollectionscrate and not to docs forstd. 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.