1# Summary
2
3* [Overview](README.md)
4* [`Copy` and `Clone` traits](Clone.md)
5    * [`clone_from`](Clone.md#clone-from)
6    * [Custom bound](Clone.md#custom-bound)
7* [`Debug` trait](Debug.md)
8    * [Hiding fields](Debug.md#ignoring-a-field)
9    * [Hiding newtypes](Debug.md#hiding-newtypes)
10    * [Alternative format function](Debug.md#format-with)
11    * [Custom bound](Debug.md#custom-bound)
12* [`Default` trait](Default.md)
13    * [Default enumeration](Default.md#default-enumeration)
14    * [Setting the value of a field](Default.md#setting-the-value-of-a-field)
15    * [`new` function](Default.md#new-function)
16    * [Custom bound](Default.md#custom-bound)
17* [`Hash` trait](Hash.md)
18    * [Ignoring fields](Hash.md#ignoring-a-field)
19    * [Alternative hash function](Debug.md#hash-with)
20    * [Custom bound](Hash.md#custom-bound)
21* [Comparison traits](cmp.md)
22    * [Note about enumerations](cmp.md#enumerations)
23    * [Ignoring fields](cmp.md#ignoring-a-field)
24    * [Alternative comparison function](cmp.md#compare-with)
25    * [Custom bound](cmp.md#custom-bound)
26