@@ -136,7 +136,8 @@ impl<'gcx> HashStable<StableHashingContext<'gcx>> for ty::BoundVar {
136136}
137137
138138impl < ' a , T > HashStable < StableHashingContext < ' a > > for ty:: Binder < T >
139- where T : HashStable < StableHashingContext < ' a > >
139+ where
140+ T : HashStable < StableHashingContext < ' a > > ,
140141{
141142 fn hash_stable < W : StableHasherResult > ( & self ,
142143 hcx : & mut StableHashingContext < ' a > ,
@@ -192,9 +193,7 @@ impl<'a> ToStableHashKey<StableHashingContext<'a>> for region::Scope {
192193 }
193194}
194195
195- impl < ' a > HashStable < StableHashingContext < ' a > >
196- for ty:: TyVid
197- {
196+ impl < ' a > HashStable < StableHashingContext < ' a > > for ty:: TyVid {
198197 fn hash_stable < W : StableHasherResult > ( & self ,
199198 _hcx : & mut StableHashingContext < ' a > ,
200199 _hasher : & mut StableHasher < W > ) {
@@ -204,9 +203,7 @@ for ty::TyVid
204203 }
205204}
206205
207- impl < ' a > HashStable < StableHashingContext < ' a > >
208- for ty:: IntVid
209- {
206+ impl < ' a > HashStable < StableHashingContext < ' a > > for ty:: IntVid {
210207 fn hash_stable < W : StableHasherResult > ( & self ,
211208 _hcx : & mut StableHashingContext < ' a > ,
212209 _hasher : & mut StableHasher < W > ) {
@@ -216,9 +213,7 @@ for ty::IntVid
216213 }
217214}
218215
219- impl < ' a > HashStable < StableHashingContext < ' a > >
220- for ty:: FloatVid
221- {
216+ impl < ' a > HashStable < StableHashingContext < ' a > > for ty:: FloatVid {
222217 fn hash_stable < W : StableHasherResult > ( & self ,
223218 _hcx : & mut StableHashingContext < ' a > ,
224219 _hasher : & mut StableHasher < W > ) {
@@ -228,9 +223,9 @@ for ty::FloatVid
228223 }
229224}
230225
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 > > ,
234229{
235230 fn hash_stable < W : StableHasherResult > ( & self ,
236231 hcx : & mut StableHashingContext < ' a > ,
0 commit comments