@@ -347,7 +347,7 @@ impl<'tcx> ToTrace<'tcx> for Ty<'tcx> {
347
347
) -> TypeTrace < ' tcx > {
348
348
TypeTrace {
349
349
cause : cause. clone ( ) ,
350
- values : Terms ( ExpectedFound :: new ( a_is_expected, a. into ( ) , b. into ( ) ) ) ,
350
+ values : ValuePairs :: Terms ( ExpectedFound :: new ( a_is_expected, a. into ( ) , b. into ( ) ) ) ,
351
351
}
352
352
}
353
353
}
@@ -359,7 +359,10 @@ impl<'tcx> ToTrace<'tcx> for ty::Region<'tcx> {
359
359
a : Self ,
360
360
b : Self ,
361
361
) -> TypeTrace < ' tcx > {
362
- TypeTrace { cause : cause. clone ( ) , values : Regions ( ExpectedFound :: new ( a_is_expected, a, b) ) }
362
+ TypeTrace {
363
+ cause : cause. clone ( ) ,
364
+ values : ValuePairs :: Regions ( ExpectedFound :: new ( a_is_expected, a, b) ) ,
365
+ }
363
366
}
364
367
}
365
368
@@ -372,7 +375,7 @@ impl<'tcx> ToTrace<'tcx> for Const<'tcx> {
372
375
) -> TypeTrace < ' tcx > {
373
376
TypeTrace {
374
377
cause : cause. clone ( ) ,
375
- values : Terms ( ExpectedFound :: new ( a_is_expected, a. into ( ) , b. into ( ) ) ) ,
378
+ values : ValuePairs :: Terms ( ExpectedFound :: new ( a_is_expected, a. into ( ) , b. into ( ) ) ) ,
376
379
}
377
380
}
378
381
}
@@ -388,13 +391,13 @@ impl<'tcx> ToTrace<'tcx> for ty::GenericArg<'tcx> {
388
391
cause : cause. clone ( ) ,
389
392
values : match ( a. unpack ( ) , b. unpack ( ) ) {
390
393
( GenericArgKind :: Lifetime ( a) , GenericArgKind :: Lifetime ( b) ) => {
391
- Regions ( ExpectedFound :: new ( a_is_expected, a, b) )
394
+ ValuePairs :: Regions ( ExpectedFound :: new ( a_is_expected, a, b) )
392
395
}
393
396
( GenericArgKind :: Type ( a) , GenericArgKind :: Type ( b) ) => {
394
- Terms ( ExpectedFound :: new ( a_is_expected, a. into ( ) , b. into ( ) ) )
397
+ ValuePairs :: Terms ( ExpectedFound :: new ( a_is_expected, a. into ( ) , b. into ( ) ) )
395
398
}
396
399
( GenericArgKind :: Const ( a) , GenericArgKind :: Const ( b) ) => {
397
- Terms ( ExpectedFound :: new ( a_is_expected, a. into ( ) , b. into ( ) ) )
400
+ ValuePairs :: Terms ( ExpectedFound :: new ( a_is_expected, a. into ( ) , b. into ( ) ) )
398
401
}
399
402
400
403
(
@@ -423,7 +426,10 @@ impl<'tcx> ToTrace<'tcx> for ty::Term<'tcx> {
423
426
a : Self ,
424
427
b : Self ,
425
428
) -> TypeTrace < ' tcx > {
426
- TypeTrace { cause : cause. clone ( ) , values : Terms ( ExpectedFound :: new ( a_is_expected, a, b) ) }
429
+ TypeTrace {
430
+ cause : cause. clone ( ) ,
431
+ values : ValuePairs :: Terms ( ExpectedFound :: new ( a_is_expected, a, b) ) ,
432
+ }
427
433
}
428
434
}
429
435
@@ -436,7 +442,7 @@ impl<'tcx> ToTrace<'tcx> for ty::TraitRef<'tcx> {
436
442
) -> TypeTrace < ' tcx > {
437
443
TypeTrace {
438
444
cause : cause. clone ( ) ,
439
- values : TraitRefs ( ExpectedFound :: new ( a_is_expected, a, b) ) ,
445
+ values : ValuePairs :: TraitRefs ( ExpectedFound :: new ( a_is_expected, a, b) ) ,
440
446
}
441
447
}
442
448
}
@@ -450,7 +456,7 @@ impl<'tcx> ToTrace<'tcx> for ty::AliasTy<'tcx> {
450
456
) -> TypeTrace < ' tcx > {
451
457
TypeTrace {
452
458
cause : cause. clone ( ) ,
453
- values : Aliases ( ExpectedFound :: new ( a_is_expected, a. into ( ) , b. into ( ) ) ) ,
459
+ values : ValuePairs :: Aliases ( ExpectedFound :: new ( a_is_expected, a. into ( ) , b. into ( ) ) ) ,
454
460
}
455
461
}
456
462
}
@@ -462,7 +468,10 @@ impl<'tcx> ToTrace<'tcx> for ty::AliasTerm<'tcx> {
462
468
a : Self ,
463
469
b : Self ,
464
470
) -> TypeTrace < ' tcx > {
465
- TypeTrace { cause : cause. clone ( ) , values : Aliases ( ExpectedFound :: new ( a_is_expected, a, b) ) }
471
+ TypeTrace {
472
+ cause : cause. clone ( ) ,
473
+ values : ValuePairs :: Aliases ( ExpectedFound :: new ( a_is_expected, a, b) ) ,
474
+ }
466
475
}
467
476
}
468
477
@@ -475,7 +484,7 @@ impl<'tcx> ToTrace<'tcx> for ty::FnSig<'tcx> {
475
484
) -> TypeTrace < ' tcx > {
476
485
TypeTrace {
477
486
cause : cause. clone ( ) ,
478
- values : PolySigs ( ExpectedFound :: new (
487
+ values : ValuePairs :: PolySigs ( ExpectedFound :: new (
479
488
a_is_expected,
480
489
ty:: Binder :: dummy ( a) ,
481
490
ty:: Binder :: dummy ( b) ,
@@ -493,7 +502,7 @@ impl<'tcx> ToTrace<'tcx> for ty::PolyFnSig<'tcx> {
493
502
) -> TypeTrace < ' tcx > {
494
503
TypeTrace {
495
504
cause : cause. clone ( ) ,
496
- values : PolySigs ( ExpectedFound :: new ( a_is_expected, a, b) ) ,
505
+ values : ValuePairs :: PolySigs ( ExpectedFound :: new ( a_is_expected, a, b) ) ,
497
506
}
498
507
}
499
508
}
@@ -507,7 +516,7 @@ impl<'tcx> ToTrace<'tcx> for ty::PolyExistentialTraitRef<'tcx> {
507
516
) -> TypeTrace < ' tcx > {
508
517
TypeTrace {
509
518
cause : cause. clone ( ) ,
510
- values : ExistentialTraitRef ( ExpectedFound :: new ( a_is_expected, a, b) ) ,
519
+ values : ValuePairs :: ExistentialTraitRef ( ExpectedFound :: new ( a_is_expected, a, b) ) ,
511
520
}
512
521
}
513
522
}
@@ -521,7 +530,7 @@ impl<'tcx> ToTrace<'tcx> for ty::PolyExistentialProjection<'tcx> {
521
530
) -> TypeTrace < ' tcx > {
522
531
TypeTrace {
523
532
cause : cause. clone ( ) ,
524
- values : ExistentialProjection ( ExpectedFound :: new ( a_is_expected, a, b) ) ,
533
+ values : ValuePairs :: ExistentialProjection ( ExpectedFound :: new ( a_is_expected, a, b) ) ,
525
534
}
526
535
}
527
536
}
0 commit comments