]> git.lizzy.rs Git - rust.git/blob - src/types.rs
Merge pull request #2211 from oli-obk/master
[rust.git] / src / types.rs
1 // Copyright 2015 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 use std::iter::ExactSizeIterator;
12 use std::ops::Deref;
13
14 use syntax::ast::{self, FunctionRetTy, Mutability};
15 use syntax::codemap::{self, BytePos, Span};
16 use syntax::print::pprust;
17 use syntax::symbol::keywords;
18
19 use spanned::Spanned;
20 use codemap::SpanUtils;
21 use config::{IndentStyle, TypeDensity};
22 use expr::{rewrite_pair, rewrite_tuple, rewrite_unary_prefix, wrap_args_with_parens, PairParts};
23 use items::{format_generics_item_list, generics_shape_from_config};
24 use lists::{definitive_tactic, itemize_list, write_list, ListFormatting, ListTactic, Separator,
25             SeparatorPlace, SeparatorTactic};
26 use rewrite::{Rewrite, RewriteContext};
27 use shape::Shape;
28 use utils::{colon_spaces, extra_offset, first_line_width, format_abi, format_mutability,
29             last_line_width, mk_sp};
30
31 #[derive(Copy, Clone, Debug, Eq, PartialEq)]
32 pub enum PathContext {
33     Expr,
34     Type,
35     Import,
36 }
37
38 // Does not wrap on simple segments.
39 pub fn rewrite_path(
40     context: &RewriteContext,
41     path_context: PathContext,
42     qself: Option<&ast::QSelf>,
43     path: &ast::Path,
44     shape: Shape,
45 ) -> Option<String> {
46     let skip_count = qself.map_or(0, |x| x.position);
47
48     let mut result = if path.is_global() && qself.is_none() && path_context != PathContext::Import {
49         "::".to_owned()
50     } else {
51         String::new()
52     };
53
54     let mut span_lo = path.span.lo();
55
56     if let Some(qself) = qself {
57         result.push('<');
58         if context.config.spaces_within_parens_and_brackets() {
59             result.push_str(" ")
60         }
61
62         let fmt_ty = qself.ty.rewrite(context, shape)?;
63         result.push_str(&fmt_ty);
64
65         if skip_count > 0 {
66             result.push_str(" as ");
67             if path.is_global() && path_context != PathContext::Import {
68                 result.push_str("::");
69             }
70
71             // 3 = ">::".len()
72             let shape = shape.sub_width(3)?;
73
74             result = rewrite_path_segments(
75                 PathContext::Type,
76                 result,
77                 path.segments.iter().take(skip_count),
78                 span_lo,
79                 path.span.hi(),
80                 context,
81                 shape,
82             )?;
83         }
84
85         if context.config.spaces_within_parens_and_brackets() {
86             result.push_str(" ")
87         }
88
89         result.push_str(">::");
90         span_lo = qself.ty.span.hi() + BytePos(1);
91     }
92
93     rewrite_path_segments(
94         path_context,
95         result,
96         path.segments.iter().skip(skip_count),
97         span_lo,
98         path.span.hi(),
99         context,
100         shape,
101     )
102 }
103
104 fn rewrite_path_segments<'a, I>(
105     path_context: PathContext,
106     mut buffer: String,
107     iter: I,
108     mut span_lo: BytePos,
109     span_hi: BytePos,
110     context: &RewriteContext,
111     shape: Shape,
112 ) -> Option<String>
113 where
114     I: Iterator<Item = &'a ast::PathSegment>,
115 {
116     let mut first = true;
117     let shape = shape.visual_indent(0);
118
119     for segment in iter {
120         // Indicates a global path, shouldn't be rendered.
121         if segment.identifier.name == keywords::CrateRoot.name() {
122             continue;
123         }
124         if first {
125             first = false;
126         } else {
127             buffer.push_str("::");
128         }
129
130         let extra_offset = extra_offset(&buffer, shape);
131         let new_shape = shape.shrink_left(extra_offset)?;
132         let segment_string = rewrite_segment(
133             path_context,
134             segment,
135             &mut span_lo,
136             span_hi,
137             context,
138             new_shape,
139         )?;
140
141         buffer.push_str(&segment_string);
142     }
143
144     Some(buffer)
145 }
146
147 #[derive(Debug)]
148 enum SegmentParam<'a> {
149     LifeTime(&'a ast::Lifetime),
150     Type(&'a ast::Ty),
151     Binding(&'a ast::TypeBinding),
152 }
153
154 impl<'a> SegmentParam<'a> {
155     fn get_span(&self) -> Span {
156         match *self {
157             SegmentParam::LifeTime(lt) => lt.span,
158             SegmentParam::Type(ty) => ty.span,
159             SegmentParam::Binding(binding) => binding.span,
160         }
161     }
162 }
163
164 impl<'a> Rewrite for SegmentParam<'a> {
165     fn rewrite(&self, context: &RewriteContext, shape: Shape) -> Option<String> {
166         match *self {
167             SegmentParam::LifeTime(lt) => lt.rewrite(context, shape),
168             SegmentParam::Type(ty) => ty.rewrite(context, shape),
169             SegmentParam::Binding(binding) => {
170                 let mut result = match context.config.type_punctuation_density() {
171                     TypeDensity::Wide => format!("{} = ", binding.ident),
172                     TypeDensity::Compressed => format!("{}=", binding.ident),
173                 };
174                 let budget = shape.width.checked_sub(result.len())?;
175                 let rewrite = binding
176                     .ty
177                     .rewrite(context, Shape::legacy(budget, shape.indent + result.len()))?;
178                 result.push_str(&rewrite);
179                 Some(result)
180             }
181         }
182     }
183 }
184
185 // Formats a path segment. There are some hacks involved to correctly determine
186 // the segment's associated span since it's not part of the AST.
187 //
188 // The span_lo is assumed to be greater than the end of any previous segment's
189 // parameters and lesser or equal than the start of current segment.
190 //
191 // span_hi is assumed equal to the end of the entire path.
192 //
193 // When the segment contains a positive number of parameters, we update span_lo
194 // so that invariants described above will hold for the next segment.
195 fn rewrite_segment(
196     path_context: PathContext,
197     segment: &ast::PathSegment,
198     span_lo: &mut BytePos,
199     span_hi: BytePos,
200     context: &RewriteContext,
201     shape: Shape,
202 ) -> Option<String> {
203     let ident_len = segment.identifier.to_string().len();
204     let shape = shape.shrink_left(ident_len)?;
205
206     let params = if let Some(ref params) = segment.parameters {
207         match **params {
208             ast::PathParameters::AngleBracketed(ref data)
209                 if !data.lifetimes.is_empty() || !data.types.is_empty()
210                     || !data.bindings.is_empty() =>
211             {
212                 let param_list = data.lifetimes
213                     .iter()
214                     .map(SegmentParam::LifeTime)
215                     .chain(data.types.iter().map(|x| SegmentParam::Type(&*x)))
216                     .chain(data.bindings.iter().map(|x| SegmentParam::Binding(&*x)))
217                     .collect::<Vec<_>>();
218
219                 let next_span_lo = param_list.last().unwrap().get_span().hi() + BytePos(1);
220                 let list_lo = context.codemap.span_after(mk_sp(*span_lo, span_hi), "<");
221                 let separator = if path_context == PathContext::Expr {
222                     "::"
223                 } else {
224                     ""
225                 };
226
227                 let generics_shape =
228                     generics_shape_from_config(context.config, shape, separator.len())?;
229                 let one_line_width = shape.width.checked_sub(separator.len() + 2)?;
230                 let items = itemize_list(
231                     context.codemap,
232                     param_list.into_iter(),
233                     ">",
234                     ",",
235                     |param| param.get_span().lo(),
236                     |param| param.get_span().hi(),
237                     |seg| seg.rewrite(context, generics_shape),
238                     list_lo,
239                     span_hi,
240                     false,
241                 );
242                 let generics_str =
243                     format_generics_item_list(context, items, generics_shape, one_line_width)?;
244
245                 // Update position of last bracket.
246                 *span_lo = next_span_lo;
247
248                 format!("{}{}", separator, generics_str)
249             }
250             ast::PathParameters::Parenthesized(ref data) => {
251                 let output = match data.output {
252                     Some(ref ty) => FunctionRetTy::Ty(ty.clone()),
253                     None => FunctionRetTy::Default(codemap::DUMMY_SP),
254                 };
255                 format_function_type(
256                     data.inputs.iter().map(|x| &**x),
257                     &output,
258                     false,
259                     data.span,
260                     context,
261                     shape,
262                 )?
263             }
264             _ => String::new(),
265         }
266     } else {
267         String::new()
268     };
269
270     Some(format!("{}{}", segment.identifier, params))
271 }
272
273 fn format_function_type<'a, I>(
274     inputs: I,
275     output: &FunctionRetTy,
276     variadic: bool,
277     span: Span,
278     context: &RewriteContext,
279     shape: Shape,
280 ) -> Option<String>
281 where
282     I: ExactSizeIterator,
283     <I as Iterator>::Item: Deref,
284     <I::Item as Deref>::Target: Rewrite + Spanned + 'a,
285 {
286     // Code for handling variadics is somewhat duplicated for items, but they
287     // are different enough to need some serious refactoring to share code.
288     enum ArgumentKind<T>
289     where
290         T: Deref,
291         <T as Deref>::Target: Rewrite + Spanned,
292     {
293         Regular(Box<T>),
294         Variadic(BytePos),
295     }
296
297     let variadic_arg = if variadic {
298         let variadic_start = context.codemap.span_before(span, "...");
299         Some(ArgumentKind::Variadic(variadic_start))
300     } else {
301         None
302     };
303
304     // 2 for ()
305     let budget = shape.width.checked_sub(2)?;
306     // 1 for (
307     let offset = match context.config.indent_style() {
308         IndentStyle::Block => {
309             shape
310                 .block()
311                 .block_indent(context.config.tab_spaces())
312                 .indent
313         }
314         IndentStyle::Visual => shape.indent + 1,
315     };
316     let list_shape = Shape::legacy(budget, offset);
317     let list_lo = context.codemap.span_after(span, "(");
318     let items = itemize_list(
319         context.codemap,
320         // FIXME Would be nice to avoid this allocation,
321         // but I couldn't get the types to work out.
322         inputs
323             .map(|i| ArgumentKind::Regular(Box::new(i)))
324             .chain(variadic_arg),
325         ")",
326         ",",
327         |arg| match *arg {
328             ArgumentKind::Regular(ref ty) => ty.span().lo(),
329             ArgumentKind::Variadic(start) => start,
330         },
331         |arg| match *arg {
332             ArgumentKind::Regular(ref ty) => ty.span().hi(),
333             ArgumentKind::Variadic(start) => start + BytePos(3),
334         },
335         |arg| match *arg {
336             ArgumentKind::Regular(ref ty) => ty.rewrite(context, list_shape),
337             ArgumentKind::Variadic(_) => Some("...".to_owned()),
338         },
339         list_lo,
340         span.hi(),
341         false,
342     );
343
344     let item_vec: Vec<_> = items.collect();
345
346     let tactic = definitive_tactic(
347         &*item_vec,
348         ListTactic::HorizontalVertical,
349         Separator::Comma,
350         budget,
351     );
352
353     let fmt = ListFormatting {
354         tactic: tactic,
355         separator: ",",
356         trailing_separator: if !context.use_block_indent() || variadic {
357             SeparatorTactic::Never
358         } else {
359             context.config.trailing_comma()
360         },
361         separator_place: SeparatorPlace::Back,
362         shape: list_shape,
363         ends_with_newline: tactic.ends_with_newline(context.config.indent_style()),
364         preserve_newline: true,
365         config: context.config,
366     };
367
368     let list_str = write_list(&item_vec, &fmt)?;
369
370     let ty_shape = match context.config.indent_style() {
371         // 4 = " -> "
372         IndentStyle::Block => shape.offset_left(4)?,
373         IndentStyle::Visual => shape.block_left(4)?,
374     };
375     let output = match *output {
376         FunctionRetTy::Ty(ref ty) => {
377             let type_str = ty.rewrite(context, ty_shape)?;
378             format!(" -> {}", type_str)
379         }
380         FunctionRetTy::Default(..) => String::new(),
381     };
382
383     let extendable = (!list_str.contains('\n') || list_str.is_empty()) && !output.contains('\n');
384     let args = wrap_args_with_parens(
385         context,
386         &list_str,
387         extendable,
388         shape.sub_width(first_line_width(&output))?,
389         Shape::indented(offset, context.config),
390     );
391     if last_line_width(&args) + first_line_width(&output) <= shape.width {
392         Some(format!("{}{}", args, output))
393     } else {
394         Some(format!(
395             "{}\n{}{}",
396             args,
397             offset.to_string(context.config),
398             output.trim_left()
399         ))
400     }
401 }
402
403 fn type_bound_colon(context: &RewriteContext) -> &'static str {
404     colon_spaces(
405         context.config.space_before_colon(),
406         context.config.space_after_colon(),
407     )
408 }
409
410 impl Rewrite for ast::WherePredicate {
411     fn rewrite(&self, context: &RewriteContext, shape: Shape) -> Option<String> {
412         // TODO: dead spans?
413         let result = match *self {
414             ast::WherePredicate::BoundPredicate(ast::WhereBoundPredicate {
415                 ref bound_lifetimes,
416                 ref bounded_ty,
417                 ref bounds,
418                 ..
419             }) => {
420                 let type_str = bounded_ty.rewrite(context, shape)?;
421
422                 let colon = type_bound_colon(context);
423
424                 if !bound_lifetimes.is_empty() {
425                     let lifetime_str: String = bound_lifetimes
426                         .iter()
427                         .map(|lt| lt.rewrite(context, shape))
428                         .collect::<Option<Vec<_>>>()?
429                         .join(", ");
430
431                     // 6 = "for<> ".len()
432                     let used_width = lifetime_str.len() + type_str.len() + colon.len() + 6;
433                     let ty_shape = shape.offset_left(used_width)?;
434                     let bounds = bounds
435                         .iter()
436                         .map(|ty_bound| ty_bound.rewrite(context, ty_shape))
437                         .collect::<Option<Vec<_>>>()?;
438                     let bounds_str = join_bounds(context, ty_shape, &bounds);
439
440                     if context.config.spaces_within_parens_and_brackets()
441                         && !lifetime_str.is_empty()
442                     {
443                         format!(
444                             "for< {} > {}{}{}",
445                             lifetime_str,
446                             type_str,
447                             colon,
448                             bounds_str
449                         )
450                     } else {
451                         format!("for<{}> {}{}{}", lifetime_str, type_str, colon, bounds_str)
452                     }
453                 } else {
454                     let used_width = type_str.len() + colon.len();
455                     let ty_shape = match context.config.indent_style() {
456                         IndentStyle::Visual => shape.block_left(used_width)?,
457                         IndentStyle::Block => shape,
458                     };
459                     let bounds = bounds
460                         .iter()
461                         .map(|ty_bound| ty_bound.rewrite(context, ty_shape))
462                         .collect::<Option<Vec<_>>>()?;
463                     let overhead = type_str.len() + colon.len();
464                     let bounds_str = join_bounds(context, ty_shape.sub_width(overhead)?, &bounds);
465
466                     format!("{}{}{}", type_str, colon, bounds_str)
467                 }
468             }
469             ast::WherePredicate::RegionPredicate(ast::WhereRegionPredicate {
470                 ref lifetime,
471                 ref bounds,
472                 ..
473             }) => rewrite_bounded_lifetime(lifetime, bounds.iter(), context, shape)?,
474             ast::WherePredicate::EqPredicate(ast::WhereEqPredicate {
475                 ref lhs_ty,
476                 ref rhs_ty,
477                 ..
478             }) => {
479                 let lhs_ty_str = lhs_ty.rewrite(context, shape)?;
480                 // 3 = " = ".len()
481                 let used_width = 3 + lhs_ty_str.len();
482                 let budget = shape.width.checked_sub(used_width)?;
483                 let rhs_ty_str =
484                     rhs_ty.rewrite(context, Shape::legacy(budget, shape.indent + used_width))?;
485                 format!("{} = {}", lhs_ty_str, rhs_ty_str)
486             }
487         };
488
489         Some(result)
490     }
491 }
492
493 impl Rewrite for ast::LifetimeDef {
494     fn rewrite(&self, context: &RewriteContext, shape: Shape) -> Option<String> {
495         rewrite_bounded_lifetime(&self.lifetime, self.bounds.iter(), context, shape)
496     }
497 }
498
499 fn rewrite_bounded_lifetime<'b, I>(
500     lt: &ast::Lifetime,
501     bounds: I,
502     context: &RewriteContext,
503     shape: Shape,
504 ) -> Option<String>
505 where
506     I: ExactSizeIterator<Item = &'b ast::Lifetime>,
507 {
508     let result = lt.rewrite(context, shape)?;
509
510     if bounds.len() == 0 {
511         Some(result)
512     } else {
513         let appendix = bounds
514             .into_iter()
515             .map(|b| b.rewrite(context, shape))
516             .collect::<Option<Vec<_>>>()?;
517         let colon = type_bound_colon(context);
518         let overhead = last_line_width(&result) + colon.len();
519         let result = format!(
520             "{}{}{}",
521             result,
522             colon,
523             join_bounds(context, shape.sub_width(overhead)?, &appendix)
524         );
525         Some(result)
526     }
527 }
528
529 impl Rewrite for ast::TyParamBound {
530     fn rewrite(&self, context: &RewriteContext, shape: Shape) -> Option<String> {
531         match *self {
532             ast::TyParamBound::TraitTyParamBound(ref tref, ast::TraitBoundModifier::None) => {
533                 tref.rewrite(context, shape)
534             }
535             ast::TyParamBound::TraitTyParamBound(ref tref, ast::TraitBoundModifier::Maybe) => {
536                 Some(format!(
537                     "?{}",
538                     tref.rewrite(context, shape.offset_left(1)?)?
539                 ))
540             }
541             ast::TyParamBound::RegionTyParamBound(ref l) => l.rewrite(context, shape),
542         }
543     }
544 }
545
546 impl Rewrite for ast::Lifetime {
547     fn rewrite(&self, _: &RewriteContext, _: Shape) -> Option<String> {
548         Some(pprust::lifetime_to_string(self))
549     }
550 }
551
552 impl Rewrite for ast::TyParamBounds {
553     fn rewrite(&self, context: &RewriteContext, shape: Shape) -> Option<String> {
554         let strs = self.iter()
555             .map(|b| b.rewrite(context, shape))
556             .collect::<Option<Vec<_>>>()?;
557         Some(join_bounds(context, shape, &strs))
558     }
559 }
560
561 impl Rewrite for ast::TyParam {
562     fn rewrite(&self, context: &RewriteContext, shape: Shape) -> Option<String> {
563         let mut result = String::with_capacity(128);
564         // FIXME: If there are more than one attributes, this will force multiline.
565         match self.attrs.rewrite(context, shape) {
566             Some(ref rw) if !rw.is_empty() => result.push_str(&format!("{} ", rw)),
567             _ => (),
568         }
569         result.push_str(&self.ident.to_string());
570         if !self.bounds.is_empty() {
571             result.push_str(type_bound_colon(context));
572             let strs = self.bounds
573                 .iter()
574                 .map(|ty_bound| ty_bound.rewrite(context, shape))
575                 .collect::<Option<Vec<_>>>()?;
576             result.push_str(&join_bounds(context, shape, &strs));
577         }
578         if let Some(ref def) = self.default {
579             let eq_str = match context.config.type_punctuation_density() {
580                 TypeDensity::Compressed => "=",
581                 TypeDensity::Wide => " = ",
582             };
583             result.push_str(eq_str);
584             let budget = shape.width.checked_sub(result.len())?;
585             let rewrite = def.rewrite(context, Shape::legacy(budget, shape.indent + result.len()))?;
586             result.push_str(&rewrite);
587         }
588
589         Some(result)
590     }
591 }
592
593 impl Rewrite for ast::PolyTraitRef {
594     fn rewrite(&self, context: &RewriteContext, shape: Shape) -> Option<String> {
595         if !self.bound_lifetimes.is_empty() {
596             let lifetime_str: String = self.bound_lifetimes
597                 .iter()
598                 .map(|lt| lt.rewrite(context, shape))
599                 .collect::<Option<Vec<_>>>()?
600                 .join(", ");
601
602             // 6 is "for<> ".len()
603             let extra_offset = lifetime_str.len() + 6;
604             let path_str = self.trait_ref
605                 .rewrite(context, shape.offset_left(extra_offset)?)?;
606
607             Some(
608                 if context.config.spaces_within_parens_and_brackets() && !lifetime_str.is_empty() {
609                     format!("for< {} > {}", lifetime_str, path_str)
610                 } else {
611                     format!("for<{}> {}", lifetime_str, path_str)
612                 },
613             )
614         } else {
615             self.trait_ref.rewrite(context, shape)
616         }
617     }
618 }
619
620 impl Rewrite for ast::TraitRef {
621     fn rewrite(&self, context: &RewriteContext, shape: Shape) -> Option<String> {
622         rewrite_path(context, PathContext::Type, None, &self.path, shape)
623     }
624 }
625
626 impl Rewrite for ast::Ty {
627     fn rewrite(&self, context: &RewriteContext, shape: Shape) -> Option<String> {
628         match self.node {
629             ast::TyKind::TraitObject(ref bounds, ..) => bounds.rewrite(context, shape),
630             ast::TyKind::Ptr(ref mt) => {
631                 let prefix = match mt.mutbl {
632                     Mutability::Mutable => "*mut ",
633                     Mutability::Immutable => "*const ",
634                 };
635
636                 rewrite_unary_prefix(context, prefix, &*mt.ty, shape)
637             }
638             ast::TyKind::Rptr(ref lifetime, ref mt) => {
639                 let mut_str = format_mutability(mt.mutbl);
640                 let mut_len = mut_str.len();
641                 Some(match *lifetime {
642                     Some(ref lifetime) => {
643                         let lt_budget = shape.width.checked_sub(2 + mut_len)?;
644                         let lt_str = lifetime.rewrite(
645                             context,
646                             Shape::legacy(lt_budget, shape.indent + 2 + mut_len),
647                         )?;
648                         let lt_len = lt_str.len();
649                         let budget = shape.width.checked_sub(2 + mut_len + lt_len)?;
650                         format!(
651                             "&{} {}{}",
652                             lt_str,
653                             mut_str,
654                             mt.ty.rewrite(
655                                 context,
656                                 Shape::legacy(budget, shape.indent + 2 + mut_len + lt_len)
657                             )?
658                         )
659                     }
660                     None => {
661                         let budget = shape.width.checked_sub(1 + mut_len)?;
662                         format!(
663                             "&{}{}",
664                             mut_str,
665                             mt.ty.rewrite(
666                                 context,
667                                 Shape::legacy(budget, shape.indent + 1 + mut_len)
668                             )?
669                         )
670                     }
671                 })
672             }
673             // FIXME: we drop any comments here, even though it's a silly place to put
674             // comments.
675             ast::TyKind::Paren(ref ty) => {
676                 let budget = shape.width.checked_sub(2)?;
677                 ty.rewrite(context, Shape::legacy(budget, shape.indent + 1))
678                     .map(|ty_str| {
679                         if context.config.spaces_within_parens_and_brackets() {
680                             format!("( {} )", ty_str)
681                         } else {
682                             format!("({})", ty_str)
683                         }
684                     })
685             }
686             ast::TyKind::Slice(ref ty) => {
687                 let budget = if context.config.spaces_within_parens_and_brackets() {
688                     shape.width.checked_sub(4)?
689                 } else {
690                     shape.width.checked_sub(2)?
691                 };
692                 ty.rewrite(context, Shape::legacy(budget, shape.indent + 1))
693                     .map(|ty_str| {
694                         if context.config.spaces_within_parens_and_brackets() {
695                             format!("[ {} ]", ty_str)
696                         } else {
697                             format!("[{}]", ty_str)
698                         }
699                     })
700             }
701             ast::TyKind::Tup(ref items) => rewrite_tuple(
702                 context,
703                 &::utils::ptr_vec_to_ref_vec(items),
704                 self.span,
705                 shape,
706             ),
707             ast::TyKind::Path(ref q_self, ref path) => {
708                 rewrite_path(context, PathContext::Type, q_self.as_ref(), path, shape)
709             }
710             ast::TyKind::Array(ref ty, ref repeats) => {
711                 let use_spaces = context.config.spaces_within_parens_and_brackets();
712                 let lbr = if use_spaces { "[ " } else { "[" };
713                 let rbr = if use_spaces { " ]" } else { "]" };
714                 rewrite_pair(
715                     &**ty,
716                     &**repeats,
717                     PairParts::new(lbr, "; ", rbr),
718                     context,
719                     shape,
720                     SeparatorPlace::Back,
721                 )
722             }
723             ast::TyKind::Infer => if shape.width >= 1 {
724                 Some("_".to_owned())
725             } else {
726                 None
727             },
728             ast::TyKind::BareFn(ref bare_fn) => rewrite_bare_fn(bare_fn, self.span, context, shape),
729             ast::TyKind::Never => Some(String::from("!")),
730             ast::TyKind::Mac(..) => None,
731             ast::TyKind::ImplicitSelf => Some(String::from("")),
732             ast::TyKind::ImplTrait(ref it) => it.rewrite(context, shape)
733                 .map(|it_str| format!("impl {}", it_str)),
734             ast::TyKind::Err | ast::TyKind::Typeof(..) => unreachable!(),
735         }
736     }
737 }
738
739 fn rewrite_bare_fn(
740     bare_fn: &ast::BareFnTy,
741     span: Span,
742     context: &RewriteContext,
743     shape: Shape,
744 ) -> Option<String> {
745     let mut result = String::with_capacity(128);
746
747     if !bare_fn.lifetimes.is_empty() {
748         result.push_str("for<");
749         // 6 = "for<> ".len(), 4 = "for<".
750         // This doesn't work out so nicely for mutliline situation with lots of
751         // rightward drift. If that is a problem, we could use the list stuff.
752         result.push_str(&bare_fn
753             .lifetimes
754             .iter()
755             .map(|l| {
756                 l.rewrite(
757                     context,
758                     Shape::legacy(shape.width.checked_sub(6)?, shape.indent + 4),
759                 )
760             })
761             .collect::<Option<Vec<_>>>()?
762             .join(", "));
763         result.push_str("> ");
764     }
765
766     result.push_str(::utils::format_unsafety(bare_fn.unsafety));
767
768     result.push_str(&format_abi(
769         bare_fn.abi,
770         context.config.force_explicit_abi(),
771         false,
772     ));
773
774     result.push_str("fn");
775
776     let func_ty_shape = shape.offset_left(result.len())?;
777
778     let rewrite = format_function_type(
779         bare_fn.decl.inputs.iter(),
780         &bare_fn.decl.output,
781         bare_fn.decl.variadic,
782         span,
783         context,
784         func_ty_shape,
785     )?;
786
787     result.push_str(&rewrite);
788
789     Some(result)
790 }
791
792 pub fn join_bounds(context: &RewriteContext, shape: Shape, type_strs: &[String]) -> String {
793     // Try to join types in a single line
794     let joiner = match context.config.type_punctuation_density() {
795         TypeDensity::Compressed => "+",
796         TypeDensity::Wide => " + ",
797     };
798     let result = type_strs.join(joiner);
799     if result.contains('\n') || result.len() > shape.width {
800         let joiner_indent = shape.indent.block_indent(context.config);
801         let joiner = format!("\n{}+ ", joiner_indent.to_string(context.config));
802         type_strs.join(&joiner)
803     } else {
804         result
805     }
806 }
807
808 pub fn can_be_overflowed_type(context: &RewriteContext, ty: &ast::Ty, len: usize) -> bool {
809     match ty.node {
810         ast::TyKind::Path(..) | ast::TyKind::Tup(..) => context.use_block_indent() && len == 1,
811         ast::TyKind::Rptr(_, ref mutty) | ast::TyKind::Ptr(ref mutty) => {
812             can_be_overflowed_type(context, &*mutty.ty, len)
813         }
814         _ => false,
815     }
816 }