@@ -1873,7 +1873,7 @@ impl BuiltinBounds {
1873
1873
self_ty : Ty < ' tcx > ) -> Vec < Predicate < ' tcx > > {
1874
1874
self . iter ( ) . filter_map ( |builtin_bound|
1875
1875
match traits:: trait_ref_for_builtin_bound ( tcx, builtin_bound, self_ty) {
1876
- Ok ( trait_ref) => Some ( trait_ref. as_predicate ( ) ) ,
1876
+ Ok ( trait_ref) => Some ( trait_ref. to_predicate ( ) ) ,
1877
1877
Err ( ErrorReported ) => { None }
1878
1878
}
1879
1879
) . collect ( )
@@ -2390,12 +2390,12 @@ impl<'tcx> ToPolyTraitRef<'tcx> for PolyProjectionPredicate<'tcx> {
2390
2390
}
2391
2391
}
2392
2392
2393
- pub trait AsPredicate < ' tcx > {
2394
- fn as_predicate ( & self ) -> Predicate < ' tcx > ;
2393
+ pub trait ToPredicate < ' tcx > {
2394
+ fn to_predicate ( & self ) -> Predicate < ' tcx > ;
2395
2395
}
2396
2396
2397
- impl < ' tcx > AsPredicate < ' tcx > for TraitRef < ' tcx > {
2398
- fn as_predicate ( & self ) -> Predicate < ' tcx > {
2397
+ impl < ' tcx > ToPredicate < ' tcx > for TraitRef < ' tcx > {
2398
+ fn to_predicate ( & self ) -> Predicate < ' tcx > {
2399
2399
// we're about to add a binder, so let's check that we don't
2400
2400
// accidentally capture anything, or else that might be some
2401
2401
// weird debruijn accounting.
@@ -2407,32 +2407,32 @@ impl<'tcx> AsPredicate<'tcx> for TraitRef<'tcx> {
2407
2407
}
2408
2408
}
2409
2409
2410
- impl < ' tcx > AsPredicate < ' tcx > for PolyTraitRef < ' tcx > {
2411
- fn as_predicate ( & self ) -> Predicate < ' tcx > {
2410
+ impl < ' tcx > ToPredicate < ' tcx > for PolyTraitRef < ' tcx > {
2411
+ fn to_predicate ( & self ) -> Predicate < ' tcx > {
2412
2412
ty:: Predicate :: Trait ( self . to_poly_trait_predicate ( ) )
2413
2413
}
2414
2414
}
2415
2415
2416
- impl < ' tcx > AsPredicate < ' tcx > for PolyEquatePredicate < ' tcx > {
2417
- fn as_predicate ( & self ) -> Predicate < ' tcx > {
2416
+ impl < ' tcx > ToPredicate < ' tcx > for PolyEquatePredicate < ' tcx > {
2417
+ fn to_predicate ( & self ) -> Predicate < ' tcx > {
2418
2418
Predicate :: Equate ( self . clone ( ) )
2419
2419
}
2420
2420
}
2421
2421
2422
- impl < ' tcx > AsPredicate < ' tcx > for PolyRegionOutlivesPredicate {
2423
- fn as_predicate ( & self ) -> Predicate < ' tcx > {
2422
+ impl < ' tcx > ToPredicate < ' tcx > for PolyRegionOutlivesPredicate {
2423
+ fn to_predicate ( & self ) -> Predicate < ' tcx > {
2424
2424
Predicate :: RegionOutlives ( self . clone ( ) )
2425
2425
}
2426
2426
}
2427
2427
2428
- impl < ' tcx > AsPredicate < ' tcx > for PolyTypeOutlivesPredicate < ' tcx > {
2429
- fn as_predicate ( & self ) -> Predicate < ' tcx > {
2428
+ impl < ' tcx > ToPredicate < ' tcx > for PolyTypeOutlivesPredicate < ' tcx > {
2429
+ fn to_predicate ( & self ) -> Predicate < ' tcx > {
2430
2430
Predicate :: TypeOutlives ( self . clone ( ) )
2431
2431
}
2432
2432
}
2433
2433
2434
- impl < ' tcx > AsPredicate < ' tcx > for PolyProjectionPredicate < ' tcx > {
2435
- fn as_predicate ( & self ) -> Predicate < ' tcx > {
2434
+ impl < ' tcx > ToPredicate < ' tcx > for PolyProjectionPredicate < ' tcx > {
2435
+ fn to_predicate ( & self ) -> Predicate < ' tcx > {
2436
2436
Predicate :: Projection ( self . clone ( ) )
2437
2437
}
2438
2438
}
0 commit comments