commit | 99ef8c99b4e5c1c16c74b56c49be6e0f8dba0730 | [log] [tgz] |
---|---|---|
author | David Tolnay <dtolnay@gmail.com> | Sun Sep 04 11:31:37 2016 -0700 |
committer | David Tolnay <dtolnay@gmail.com> | Sun Sep 04 11:31:37 2016 -0700 |
tree | 9223d5f062130c0a0a24d05fd811cc5e1aeb3da9 | |
parent | 33505d7f7338b6ef88b4b22f07e4f5ab30d3e4c9 [diff] |
Include the real Item struct in readme
diff --git a/README.md b/README.md index 307b67f..4906ab5 100644 --- a/README.md +++ b/README.md
@@ -13,10 +13,13 @@ extern crate item; let raw = " - #[derive(Debug, Clone)] + #[derive(Debug, Clone, Eq, PartialEq)] pub struct Item { pub ident: Ident, + pub vis: Visibility, pub attrs: Vec<Attribute>, + pub generics: Generics, + pub body: Body, } ";