@@ -217,7 +217,7 @@ pub trait PrettyPrinter<'tcx>: Printer<'tcx> + fmt::Write {
217
217
218
218
fn in_binder < T > ( self , value : & ty:: Binder < ' tcx , T > ) -> Result < Self , PrintError >
219
219
where
220
- T : Print < ' tcx , Self , Error = PrintError > + TypeFoldable < TyCtxt < ' tcx > > ,
220
+ T : Print < ' tcx , Self > + TypeFoldable < TyCtxt < ' tcx > > ,
221
221
{
222
222
value. as_ref ( ) . skip_binder ( ) . print ( self )
223
223
}
@@ -228,15 +228,15 @@ pub trait PrettyPrinter<'tcx>: Printer<'tcx> + fmt::Write {
228
228
f : F ,
229
229
) -> Result < Self , PrintError >
230
230
where
231
- T : Print < ' tcx , Self , Error = PrintError > + TypeFoldable < TyCtxt < ' tcx > > ,
231
+ T : Print < ' tcx , Self > + TypeFoldable < TyCtxt < ' tcx > > ,
232
232
{
233
233
f ( value. as_ref ( ) . skip_binder ( ) , self )
234
234
}
235
235
236
236
/// Prints comma-separated elements.
237
237
fn comma_sep < T > ( mut self , mut elems : impl Iterator < Item = T > ) -> Result < Self , PrintError >
238
238
where
239
- T : Print < ' tcx , Self , Error = PrintError > ,
239
+ T : Print < ' tcx , Self > ,
240
240
{
241
241
if let Some ( first) = elems. next ( ) {
242
242
self = first. print ( self ) ?;
@@ -2083,7 +2083,7 @@ impl<'tcx> PrettyPrinter<'tcx> for FmtPrinter<'_, 'tcx> {
2083
2083
2084
2084
fn in_binder < T > ( self , value : & ty:: Binder < ' tcx , T > ) -> Result < Self , PrintError >
2085
2085
where
2086
- T : Print < ' tcx , Self , Error = PrintError > + TypeFoldable < TyCtxt < ' tcx > > ,
2086
+ T : Print < ' tcx , Self > + TypeFoldable < TyCtxt < ' tcx > > ,
2087
2087
{
2088
2088
self . pretty_in_binder ( value)
2089
2089
}
@@ -2094,7 +2094,7 @@ impl<'tcx> PrettyPrinter<'tcx> for FmtPrinter<'_, 'tcx> {
2094
2094
f : C ,
2095
2095
) -> Result < Self , PrintError >
2096
2096
where
2097
- T : Print < ' tcx , Self , Error = PrintError > + TypeFoldable < TyCtxt < ' tcx > > ,
2097
+ T : Print < ' tcx , Self > + TypeFoldable < TyCtxt < ' tcx > > ,
2098
2098
{
2099
2099
self . pretty_wrap_binder ( value, f)
2100
2100
}
@@ -2343,7 +2343,7 @@ impl<'tcx> FmtPrinter<'_, 'tcx> {
2343
2343
value : & ty:: Binder < ' tcx , T > ,
2344
2344
) -> Result < ( Self , T , BTreeMap < ty:: BoundRegion , ty:: Region < ' tcx > > ) , fmt:: Error >
2345
2345
where
2346
- T : Print < ' tcx , Self , Error = fmt :: Error > + TypeFoldable < TyCtxt < ' tcx > > ,
2346
+ T : Print < ' tcx , Self > + TypeFoldable < TyCtxt < ' tcx > > ,
2347
2347
{
2348
2348
fn name_by_region_index (
2349
2349
index : usize ,
@@ -2513,7 +2513,7 @@ impl<'tcx> FmtPrinter<'_, 'tcx> {
2513
2513
2514
2514
pub fn pretty_in_binder < T > ( self , value : & ty:: Binder < ' tcx , T > ) -> Result < Self , fmt:: Error >
2515
2515
where
2516
- T : Print < ' tcx , Self , Error = fmt :: Error > + TypeFoldable < TyCtxt < ' tcx > > ,
2516
+ T : Print < ' tcx , Self > + TypeFoldable < TyCtxt < ' tcx > > ,
2517
2517
{
2518
2518
let old_region_index = self . region_index ;
2519
2519
let ( new, new_value, _) = self . name_all_regions ( value) ?;
@@ -2529,7 +2529,7 @@ impl<'tcx> FmtPrinter<'_, 'tcx> {
2529
2529
f : C ,
2530
2530
) -> Result < Self , fmt:: Error >
2531
2531
where
2532
- T : Print < ' tcx , Self , Error = fmt :: Error > + TypeFoldable < TyCtxt < ' tcx > > ,
2532
+ T : Print < ' tcx , Self > + TypeFoldable < TyCtxt < ' tcx > > ,
2533
2533
{
2534
2534
let old_region_index = self . region_index ;
2535
2535
let ( new, new_value, _) = self . name_all_regions ( value) ?;
@@ -2594,21 +2594,18 @@ impl<'tcx> FmtPrinter<'_, 'tcx> {
2594
2594
2595
2595
impl < ' tcx , T , P : PrettyPrinter < ' tcx > > Print < ' tcx , P > for ty:: Binder < ' tcx , T >
2596
2596
where
2597
- T : Print < ' tcx , P , Error = PrintError > + TypeFoldable < TyCtxt < ' tcx > > ,
2597
+ T : Print < ' tcx , P > + TypeFoldable < TyCtxt < ' tcx > > ,
2598
2598
{
2599
- type Error = PrintError ;
2600
-
2601
2599
fn print ( & self , cx : P ) -> Result < P , PrintError > {
2602
2600
cx. in_binder ( self )
2603
2601
}
2604
2602
}
2605
2603
2606
2604
impl < ' tcx , T , U , P : PrettyPrinter < ' tcx > > Print < ' tcx , P > for ty:: OutlivesPredicate < T , U >
2607
2605
where
2608
- T : Print < ' tcx , P , Error = PrintError > ,
2609
- U : Print < ' tcx , P , Error = PrintError > ,
2606
+ T : Print < ' tcx , P > ,
2607
+ U : Print < ' tcx , P > ,
2610
2608
{
2611
- type Error = PrintError ;
2612
2609
fn print ( & self , mut cx : P ) -> Result < P , PrintError > {
2613
2610
define_scoped_cx ! ( cx) ;
2614
2611
p ! ( print( self . 0 ) , ": " , print( self . 1 ) ) ;
@@ -2636,7 +2633,6 @@ macro_rules! forward_display_to_print {
2636
2633
macro_rules! define_print_and_forward_display {
2637
2634
( ( $self: ident, $cx: ident) : $( $ty: ty $print: block) +) => {
2638
2635
$( impl <' tcx, P : PrettyPrinter <' tcx>> Print <' tcx, P > for $ty {
2639
- type Error = fmt:: Error ;
2640
2636
fn print( & $self, $cx: P ) -> Result <P , PrintError > {
2641
2637
#[ allow( unused_mut) ]
2642
2638
let mut $cx = $cx;
0 commit comments