File tree 2 files changed +4
-0
lines changed
2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -100,9 +100,11 @@ impl<'tcx> Interner for TyCtxt<'tcx> {
100
100
type AdtDef = ty:: AdtDef < ' tcx > ;
101
101
type SubstsRef = ty:: SubstsRef < ' tcx > ;
102
102
type DefId = DefId ;
103
+ type Binder < T > = Binder < ' tcx , T > ;
103
104
type Ty = Ty < ' tcx > ;
104
105
type Const = ty:: Const < ' tcx > ;
105
106
type Region = Region < ' tcx > ;
107
+ type Predicate = Predicate < ' tcx > ;
106
108
type TypeAndMut = TypeAndMut < ' tcx > ;
107
109
type Mutability = hir:: Mutability ;
108
110
type Movability = hir:: Movability ;
Original file line number Diff line number Diff line change @@ -32,9 +32,11 @@ pub trait Interner {
32
32
type AdtDef : Clone + Debug + Hash + PartialEq + Eq + PartialOrd + Ord ;
33
33
type SubstsRef : Clone + Debug + Hash + PartialEq + Eq + PartialOrd + Ord ;
34
34
type DefId : Clone + Debug + Hash + PartialEq + Eq + PartialOrd + Ord ;
35
+ type Binder < T > ;
35
36
type Ty : Clone + Debug + Hash + PartialEq + Eq + PartialOrd + Ord ;
36
37
type Const : Clone + Debug + Hash + PartialEq + Eq + PartialOrd + Ord ;
37
38
type Region : Clone + Debug + Hash + PartialEq + Eq + PartialOrd + Ord ;
39
+ type Predicate ;
38
40
type TypeAndMut : Clone + Debug + Hash + PartialEq + Eq + PartialOrd + Ord ;
39
41
type Mutability : Clone + Debug + Hash + PartialEq + Eq + PartialOrd + Ord ;
40
42
type Movability : Clone + Debug + Hash + PartialEq + Eq + PartialOrd + Ord ;
You can’t perform that action at this time.
0 commit comments