@@ -18,9 +18,9 @@ pub struct Attrs<'a> {
18
18
#[ derive( Clone ) ]
19
19
pub struct Display < ' a > {
20
20
pub original : & ' a Attribute ,
21
- pub use_write_str : bool ,
22
21
pub fmt : LitStr ,
23
22
pub args : TokenStream ,
23
+ pub requires_fmt_machinery : bool ,
24
24
pub has_bonus_display : bool ,
25
25
pub implied_bounds : Set < ( usize , Trait ) > ,
26
26
}
@@ -106,12 +106,12 @@ fn parse_error_attribute<'a>(attrs: &mut Attrs<'a>, attr: &'a Attribute) -> Resu
106
106
107
107
let fmt: LitStr = input. parse ( ) ?;
108
108
let args = parse_token_expr ( input, false ) ?;
109
+ let requires_fmt_machinery = !args. is_empty ( ) ;
109
110
let display = Display {
110
111
original : attr,
111
- // This will be updated later if format_args are still required (i.e. has braces)
112
- use_write_str : args. is_empty ( ) ,
113
112
fmt,
114
113
args,
114
+ requires_fmt_machinery,
115
115
has_bonus_display : false ,
116
116
implied_bounds : Set :: new ( ) ,
117
117
} ;
@@ -205,13 +205,13 @@ impl ToTokens for Display<'_> {
205
205
// Currently `write!(f, "text")` produces less efficient code than
206
206
// `f.write_str("text")`. We recognize the case when the format string
207
207
// has no braces and no interpolated values, and generate simpler code.
208
- tokens. extend ( if self . use_write_str {
208
+ tokens. extend ( if self . requires_fmt_machinery {
209
209
quote ! {
210
- __formatter . write_str ( #fmt)
210
+ :: core :: write! ( __formatter , #fmt #args )
211
211
}
212
212
} else {
213
213
quote ! {
214
- :: core :: write! ( __formatter, #fmt #args )
214
+ __formatter. write_str ( #fmt)
215
215
}
216
216
} ) ;
217
217
}
0 commit comments