@@ -136,7 +136,8 @@ impl<'gcx> HashStable<StableHashingContext<'gcx>> for ty::BoundVar {
136
136
}
137
137
138
138
impl < ' a , T > HashStable < StableHashingContext < ' a > > for ty:: Binder < T >
139
- where T : HashStable < StableHashingContext < ' a > >
139
+ where
140
+ T : HashStable < StableHashingContext < ' a > > ,
140
141
{
141
142
fn hash_stable < W : StableHasherResult > ( & self ,
142
143
hcx : & mut StableHashingContext < ' a > ,
@@ -192,9 +193,7 @@ impl<'a> ToStableHashKey<StableHashingContext<'a>> for region::Scope {
192
193
}
193
194
}
194
195
195
- impl < ' a > HashStable < StableHashingContext < ' a > >
196
- for ty:: TyVid
197
- {
196
+ impl < ' a > HashStable < StableHashingContext < ' a > > for ty:: TyVid {
198
197
fn hash_stable < W : StableHasherResult > ( & self ,
199
198
_hcx : & mut StableHashingContext < ' a > ,
200
199
_hasher : & mut StableHasher < W > ) {
@@ -204,9 +203,7 @@ for ty::TyVid
204
203
}
205
204
}
206
205
207
- impl < ' a > HashStable < StableHashingContext < ' a > >
208
- for ty:: IntVid
209
- {
206
+ impl < ' a > HashStable < StableHashingContext < ' a > > for ty:: IntVid {
210
207
fn hash_stable < W : StableHasherResult > ( & self ,
211
208
_hcx : & mut StableHashingContext < ' a > ,
212
209
_hasher : & mut StableHasher < W > ) {
@@ -216,9 +213,7 @@ for ty::IntVid
216
213
}
217
214
}
218
215
219
- impl < ' a > HashStable < StableHashingContext < ' a > >
220
- for ty:: FloatVid
221
- {
216
+ impl < ' a > HashStable < StableHashingContext < ' a > > for ty:: FloatVid {
222
217
fn hash_stable < W : StableHasherResult > ( & self ,
223
218
_hcx : & mut StableHashingContext < ' a > ,
224
219
_hasher : & mut StableHasher < W > ) {
@@ -228,9 +223,9 @@ for ty::FloatVid
228
223
}
229
224
}
230
225
231
- impl < ' a , T > HashStable < StableHashingContext < ' a > >
232
- for ty :: steal :: Steal < T >
233
- where T : HashStable < StableHashingContext < ' a > >
226
+ impl < ' a , T > HashStable < StableHashingContext < ' a > > for ty :: steal :: Steal < T >
227
+ where
228
+ T : HashStable < StableHashingContext < ' a > > ,
234
229
{
235
230
fn hash_stable < W : StableHasherResult > ( & self ,
236
231
hcx : & mut StableHashingContext < ' a > ,
0 commit comments