@@ -10,12 +10,6 @@ use std::collections::{BTreeMap, BTreeSet};
10
10
11
11
pub ( crate ) const DEFAULT_SCALARS : & [ & str ] = & [ "ID" , "String" , "Int" , "Float" , "Boolean" ] ;
12
12
13
- #[ derive( Debug , PartialEq , Clone ) ]
14
- struct StoredObjectField {
15
- name : String ,
16
- object : ObjectId ,
17
- }
18
-
19
13
#[ derive( Debug , PartialEq , Clone ) ]
20
14
pub ( crate ) struct StoredObject {
21
15
pub ( crate ) name : String ,
@@ -47,9 +41,6 @@ pub(crate) enum StoredFieldParent {
47
41
#[ derive( Debug , Clone , Copy , PartialEq , Hash , Eq , PartialOrd , Ord ) ]
48
42
pub ( crate ) struct ObjectId ( u32 ) ;
49
43
50
- #[ derive( Debug , Clone , Copy , PartialEq , Hash , Eq ) ]
51
- pub ( crate ) struct ObjectFieldId ( usize ) ;
52
-
53
44
#[ derive( Debug , Clone , Copy , PartialEq , Hash , Eq , PartialOrd , Ord ) ]
54
45
pub ( crate ) struct InterfaceId ( usize ) ;
55
46
@@ -68,9 +59,6 @@ pub(crate) struct InputId(u32);
68
59
#[ derive( Debug , Clone , Copy , PartialEq ) ]
69
60
pub ( crate ) struct StoredFieldId ( usize ) ;
70
61
71
- #[ derive( Debug , Clone , Copy , PartialEq ) ]
72
- struct InputFieldId ( usize ) ;
73
-
74
62
#[ derive( Debug , Clone , PartialEq ) ]
75
63
pub ( crate ) struct StoredInterface {
76
64
name : String ,
0 commit comments