@@ -1651,8 +1651,7 @@ struct TyAliasRewriteInfo<'c, 'g>(
1651
1651
& ' c RewriteContext < ' c > ,
1652
1652
Indent ,
1653
1653
& ' g ast:: Generics ,
1654
- ( ast:: TyAliasWhereClause , ast:: TyAliasWhereClause ) ,
1655
- usize ,
1654
+ ast:: TyAliasWhereClauses ,
1656
1655
symbol:: Ident ,
1657
1656
Span ,
1658
1657
) ;
@@ -1672,23 +1671,14 @@ pub(crate) fn rewrite_type_alias<'a, 'b>(
1672
1671
ref bounds,
1673
1672
ref ty,
1674
1673
where_clauses,
1675
- where_predicates_split,
1676
1674
} = * ty_alias_kind;
1677
1675
let ty_opt = ty. as_ref ( ) ;
1678
1676
let ( ident, vis) = match visitor_kind {
1679
1677
Item ( i) => ( i. ident , & i. vis ) ,
1680
1678
AssocTraitItem ( i) | AssocImplItem ( i) => ( i. ident , & i. vis ) ,
1681
1679
ForeignItem ( i) => ( i. ident , & i. vis ) ,
1682
1680
} ;
1683
- let rw_info = & TyAliasRewriteInfo (
1684
- context,
1685
- indent,
1686
- generics,
1687
- where_clauses,
1688
- where_predicates_split,
1689
- ident,
1690
- span,
1691
- ) ;
1681
+ let rw_info = & TyAliasRewriteInfo ( context, indent, generics, where_clauses, ident, span) ;
1692
1682
let op_ty = opaque_ty ( ty) ;
1693
1683
// Type Aliases are formatted slightly differently depending on the context
1694
1684
// in which they appear, whether they are opaque, and whether they are associated.
@@ -1724,19 +1714,11 @@ fn rewrite_ty<R: Rewrite>(
1724
1714
vis : & ast:: Visibility ,
1725
1715
) -> Option < String > {
1726
1716
let mut result = String :: with_capacity ( 128 ) ;
1727
- let TyAliasRewriteInfo (
1728
- context,
1729
- indent,
1730
- generics,
1731
- where_clauses,
1732
- where_predicates_split,
1733
- ident,
1734
- span,
1735
- ) = * rw_info;
1717
+ let TyAliasRewriteInfo ( context, indent, generics, where_clauses, ident, span) = * rw_info;
1736
1718
let ( before_where_predicates, after_where_predicates) = generics
1737
1719
. where_clause
1738
1720
. predicates
1739
- . split_at ( where_predicates_split ) ;
1721
+ . split_at ( where_clauses . split ) ;
1740
1722
if !after_where_predicates. is_empty ( ) {
1741
1723
return None ;
1742
1724
}
@@ -1771,7 +1753,7 @@ fn rewrite_ty<R: Rewrite>(
1771
1753
let where_clause_str = rewrite_where_clause (
1772
1754
context,
1773
1755
before_where_predicates,
1774
- where_clauses. 0 . 1 ,
1756
+ where_clauses. before . span ,
1775
1757
context. config . brace_style ( ) ,
1776
1758
Shape :: legacy ( where_budget, indent) ,
1777
1759
false ,
@@ -1795,7 +1777,7 @@ fn rewrite_ty<R: Rewrite>(
1795
1777
let comment_span = context
1796
1778
. snippet_provider
1797
1779
. opt_span_before ( span, "=" )
1798
- . map ( |op_lo| mk_sp ( where_clauses. 0 . 1 . hi ( ) , op_lo) ) ;
1780
+ . map ( |op_lo| mk_sp ( where_clauses. before . span . hi ( ) , op_lo) ) ;
1799
1781
1800
1782
let lhs = match comment_span {
1801
1783
Some ( comment_span)
0 commit comments