summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorBryant Mairs <bryant@mai.rs>2019-01-21 19:40:02 -0800
committerBryant Mairs <bryant@mai.rs>2019-02-02 13:06:58 -0800
commit79ae1217c2a1a220b1c3f39283ba1ab812350cdc (patch)
tree491df2296a3daff36329043c234d1e129303fd91 /README.md
parent868a85d05dd46af29346302cbc8135619280cd0f (diff)
downloadrust-libc-79ae1217c2a1a220b1c3f39283ba1ab812350cdc.tar.gz
Implement Debug for all types
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index ae45ce7f40..4885cc9e3c 100644
--- a/README.md
+++ b/README.md
@@ -45,8 +45,8 @@ libc = { version = "0.2", features = ["align"] }
```
All structs implemented by the libc crate have the `Copy` and `Clone` traits
-implemented for them. The additional traits of `PartialEq` and `Eq` can be
-enabled with the *extra_traits* feature (requires Rust 1.25 or newer):
+implemented for them. The additional traits of `Debug, `Eq`, and `PartialEq`
+can be enabled with the *extra_traits* feature (requires Rust 1.25 or newer):
```toml
[dependencies]