@@ -10,12 +10,6 @@ use std::collections::{BTreeMap, BTreeSet};
1010
1111pub ( crate ) const DEFAULT_SCALARS : & [ & str ] = & [ "ID" , "String" , "Int" , "Float" , "Boolean" ] ;
1212
13- #[ derive( Debug , PartialEq , Clone ) ]
14- struct StoredObjectField {
15- name : String ,
16- object : ObjectId ,
17- }
18-
1913#[ derive( Debug , PartialEq , Clone ) ]
2014pub ( crate ) struct StoredObject {
2115 pub ( crate ) name : String ,
@@ -47,9 +41,6 @@ pub(crate) enum StoredFieldParent {
4741#[ derive( Debug , Clone , Copy , PartialEq , Hash , Eq , PartialOrd , Ord ) ]
4842pub ( crate ) struct ObjectId ( u32 ) ;
4943
50- #[ derive( Debug , Clone , Copy , PartialEq , Hash , Eq ) ]
51- pub ( crate ) struct ObjectFieldId ( usize ) ;
52-
5344#[ derive( Debug , Clone , Copy , PartialEq , Hash , Eq , PartialOrd , Ord ) ]
5445pub ( crate ) struct InterfaceId ( usize ) ;
5546
@@ -68,9 +59,6 @@ pub(crate) struct InputId(u32);
6859#[ derive( Debug , Clone , Copy , PartialEq ) ]
6960pub ( crate ) struct StoredFieldId ( usize ) ;
7061
71- #[ derive( Debug , Clone , Copy , PartialEq ) ]
72- struct InputFieldId ( usize ) ;
73-
7462#[ derive( Debug , Clone , PartialEq ) ]
7563pub ( crate ) struct StoredInterface {
7664 name : String ,
0 commit comments