trpl: link to derivable trait's docs

This commit is contained in:
panicbit 2015-10-08 07:27:26 +02:00
parent 4d7eee1817
commit 7515514fdc
1 changed files with 9 additions and 9 deletions

View File

@ -512,12 +512,12 @@ fn main() {
However, deriving is limited to a certain set of traits:
- `Clone`
- `Copy`
- `Debug`
- `Default`
- `Eq`
- `Hash`
- `Ord`
- `PartialEq`
- `PartialOrd`
- [`Clone`](../core/clone/trait.Clone.html)
- [`Copy`](../core/marker/trait.Copy.html)
- [`Debug`](../core/fmt/trait.Debug.html)
- [`Default`](../core/default/trait.Default.html)
- [`Eq`](../core/cmp/trait.Eq.html)
- [`Hash`](../core/hash/trait.Hash.html)
- [`Ord`](../core/cmp/trait.Ord.html)
- [`PartialEq`](../core/cmp/trait.PartialEq.html)
- [`PartialOrd`](../core/cmp/trait.PartialOrd.html)