@@ -40,7 +40,7 @@ pub struct Canonical<'tcx, V> {
40
40
pub value : V ,
41
41
}
42
42
43
- pub type CanonicalVarInfos < ' tcx > = & ' tcx List < CanonicalVarInfo > ;
43
+ pub type CanonicalVarInfos < ' tcx > = & ' tcx List < CanonicalVarInfo < ' tcx > > ;
44
44
45
45
/// A set of values corresponding to the canonical variables from some
46
46
/// `Canonical`. You can give these values to
@@ -88,11 +88,11 @@ impl Default for OriginalQueryValues<'tcx> {
88
88
/// a copy of the canonical value in some other inference context,
89
89
/// with fresh inference variables replacing the canonical values.
90
90
#[ derive( Copy , Clone , Debug , PartialEq , Eq , Hash , TyDecodable , TyEncodable , HashStable ) ]
91
- pub struct CanonicalVarInfo {
92
- pub kind : CanonicalVarKind ,
91
+ pub struct CanonicalVarInfo < ' tcx > {
92
+ pub kind : CanonicalVarKind < ' tcx > ,
93
93
}
94
94
95
- impl CanonicalVarInfo {
95
+ impl < ' tcx > CanonicalVarInfo < ' tcx > {
96
96
pub fn universe ( & self ) -> ty:: UniverseIndex {
97
97
self . kind . universe ( )
98
98
}
@@ -113,7 +113,7 @@ impl CanonicalVarInfo {
113
113
/// in the type-theory sense of the term -- i.e., a "meta" type system
114
114
/// that analyzes type-like values.
115
115
#[ derive( Copy , Clone , Debug , PartialEq , Eq , Hash , TyDecodable , TyEncodable , HashStable ) ]
116
- pub enum CanonicalVarKind {
116
+ pub enum CanonicalVarKind < ' tcx > {
117
117
/// Some kind of type inference variable.
118
118
Ty ( CanonicalTyVarKind ) ,
119
119
@@ -132,10 +132,10 @@ pub enum CanonicalVarKind {
132
132
Const ( ty:: UniverseIndex ) ,
133
133
134
134
/// A "placeholder" that represents "any const".
135
- PlaceholderConst ( ty:: PlaceholderConst ) ,
135
+ PlaceholderConst ( ty:: PlaceholderConst < ' tcx > ) ,
136
136
}
137
137
138
- impl CanonicalVarKind {
138
+ impl < ' tcx > CanonicalVarKind < ' tcx > {
139
139
pub fn universe ( self ) -> ty:: UniverseIndex {
140
140
match self {
141
141
CanonicalVarKind :: Ty ( kind) => match kind {
@@ -287,9 +287,11 @@ pub type QueryOutlivesConstraint<'tcx> =
287
287
ty:: Binder < ty:: OutlivesPredicate < GenericArg < ' tcx > , Region < ' tcx > > > ;
288
288
289
289
CloneTypeFoldableAndLiftImpls ! {
290
- crate :: infer:: canonical:: Certainty ,
291
- crate :: infer:: canonical:: CanonicalVarInfo ,
292
- crate :: infer:: canonical:: CanonicalVarKind ,
290
+ for <' tcx> {
291
+ crate :: infer:: canonical:: Certainty ,
292
+ crate :: infer:: canonical:: CanonicalVarInfo <' tcx>,
293
+ crate :: infer:: canonical:: CanonicalVarKind <' tcx>,
294
+ }
293
295
}
294
296
295
297
CloneTypeFoldableImpls ! {
0 commit comments