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,
     }
 ";