Skip to content

Commit 7515514

Browse files
committed
trpl: link to derivable trait's docs
1 parent 4d7eee1 commit 7515514

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/doc/trpl/traits.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -512,12 +512,12 @@ fn main() {
512512

513513
However, deriving is limited to a certain set of traits:
514514

515-
- `Clone`
516-
- `Copy`
517-
- `Debug`
518-
- `Default`
519-
- `Eq`
520-
- `Hash`
521-
- `Ord`
522-
- `PartialEq`
523-
- `PartialOrd`
515+
- [`Clone`](../core/clone/trait.Clone.html)
516+
- [`Copy`](../core/marker/trait.Copy.html)
517+
- [`Debug`](../core/fmt/trait.Debug.html)
518+
- [`Default`](../core/default/trait.Default.html)
519+
- [`Eq`](../core/cmp/trait.Eq.html)
520+
- [`Hash`](../core/hash/trait.Hash.html)
521+
- [`Ord`](../core/cmp/trait.Ord.html)
522+
- [`PartialEq`](../core/cmp/trait.PartialEq.html)
523+
- [`PartialOrd`](../core/cmp/trait.PartialOrd.html)

0 commit comments

Comments
 (0)