@@ -6,24 +6,24 @@ manually implemented if a more complex behavior is required.
6
6
7
7
This is a list of the "derivable" traits:
8
8
* Comparison traits:
9
- [ ` Eq ` ] ( http://static .rust-lang.org/doc/master /std/cmp/trait.Eq.html ) ,
10
- [ ` PartialEq ` ] ( http://static .rust-lang.org/doc/master /std/cmp/trait.PartialEq.html ) ,
11
- [ ` Ord ` ] ( http://static .rust-lang.org/doc/master /std/cmp/trait.Ord.html ) ,
12
- [ ` PartialOrd ` ] ( http://static .rust-lang.org/doc/master /std/cmp/trait.PartialOrd.html )
9
+ [ ` Eq ` ] ( http://doc .rust-lang.org/std/cmp/trait.Eq.html ) ,
10
+ [ ` PartialEq ` ] ( http://doc .rust-lang.org/std/cmp/trait.PartialEq.html ) ,
11
+ [ ` Ord ` ] ( http://doc .rust-lang.org/std/cmp/trait.Ord.html ) ,
12
+ [ ` PartialOrd ` ] ( http://doc .rust-lang.org/std/cmp/trait.PartialOrd.html )
13
13
* Serialization:
14
- [ ` Encodable ` ] ( http://static .rust-lang.org/doc/master /serialize/trait.Encodable.html ) ,
15
- [ ` Decodable ` ] ( http://static .rust-lang.org/doc/master /serialize/trait.Decodable.html )
16
- * [ ` Clone ` ] ( http://static .rust-lang.org/doc/master /std/clone/trait.Clone.html ) ,
14
+ [ ` Encodable ` ] ( http://doc .rust-lang.org/serialize/trait.Encodable.html ) ,
15
+ [ ` Decodable ` ] ( http://doc .rust-lang.org/serialize/trait.Decodable.html )
16
+ * [ ` Clone ` ] ( http://doc .rust-lang.org/std/clone/trait.Clone.html ) ,
17
17
to create ` T ` from ` &T ` via a copy.
18
- * [ ` Hash ` ] ( http://static .rust-lang.org/doc/master /std/hash/trait.Hash.html ) , to
18
+ * [ ` Hash ` ] ( http://doc .rust-lang.org/std/hash/trait.Hash.html ) , to
19
19
compute a hash from ` &T ` .
20
- * [ ` Rand ` ] ( http://static .rust-lang.org/doc/master /rand/trait.Rand.html ) , to
20
+ * [ ` Rand ` ] ( http://doc .rust-lang.org/rand/trait.Rand.html ) , to
21
21
create a random instance of a data type.
22
- * [ ` Default ` ] ( http://static .rust-lang.org/doc/master /std/default/trait.Default.html ) ,
22
+ * [ ` Default ` ] ( http://doc .rust-lang.org/std/default/trait.Default.html ) ,
23
23
to create an empty instance of a data type.
24
- * [ ` Zero ` ] ( http://static .rust-lang.org/doc/master /std/num/trait.Zero.html ) , to
24
+ * [ ` Zero ` ] ( http://doc .rust-lang.org/std/num/trait.Zero.html ) , to
25
25
create a zero instance of a numeric data type.
26
- * [ ` FromPrimitive ` ] ( http://static .rust-lang.org/doc/master /std/num/trait.FromPrimitive.html ) ,
26
+ * [ ` FromPrimitive ` ] ( http://doc .rust-lang.org/std/num/trait.FromPrimitive.html ) ,
27
27
to create an instance from a numeric primitive.
28
- * [ ` Show ` ] ( http://static .rust-lang.org/doc/master /std/fmt/trait.Show.html ) , to
28
+ * [ ` Show ` ] ( http://doc .rust-lang.org/std/fmt/trait.Show.html ) , to
29
29
format a value using the ` {} ` formatter.
0 commit comments