1
- use rustc_ast :: ptr:: P ;
2
- use rustc_ast :: Expr ;
1
+ use crate :: ptr:: P ;
2
+ use crate :: Expr ;
3
3
use rustc_data_structures:: fx:: FxHashMap ;
4
4
use rustc_span:: symbol:: { Ident , Symbol } ;
5
5
use rustc_span:: Span ;
@@ -39,7 +39,7 @@ use rustc_span::Span;
39
39
/// Basically the "AST" for a complete `format_args!()`.
40
40
///
41
41
/// E.g., `format_args!("hello {name}");`.
42
- #[ derive( Clone , Debug ) ]
42
+ #[ derive( Clone , Encodable , Decodable , Debug ) ]
43
43
pub struct FormatArgs {
44
44
pub span : Span ,
45
45
pub template : Vec < FormatArgsPiece > ,
@@ -49,7 +49,7 @@ pub struct FormatArgs {
49
49
/// A piece of a format template string.
50
50
///
51
51
/// E.g. "hello" or "{name}".
52
- #[ derive( Clone , Debug ) ]
52
+ #[ derive( Clone , Encodable , Decodable , Debug ) ]
53
53
pub enum FormatArgsPiece {
54
54
Literal ( Symbol ) ,
55
55
Placeholder ( FormatPlaceholder ) ,
@@ -59,14 +59,20 @@ pub enum FormatArgsPiece {
59
59
///
60
60
/// E.g. `1, 2, name="ferris", n=3`,
61
61
/// but also implicit captured arguments like `x` in `format_args!("{x}")`.
62
- #[ derive( Clone , Debug ) ]
62
+ #[ derive( Clone , Encodable , Decodable , Debug ) ]
63
63
pub struct FormatArguments {
64
64
arguments : Vec < FormatArgument > ,
65
65
num_unnamed_args : usize ,
66
66
num_explicit_args : usize ,
67
67
names : FxHashMap < Symbol , usize > ,
68
68
}
69
69
70
+ // FIXME: Rustdoc has trouble proving Send/Sync for this. See #106930.
71
+ #[ cfg( parallel_compiler) ]
72
+ unsafe impl Sync for FormatArguments { }
73
+ #[ cfg( parallel_compiler) ]
74
+ unsafe impl Send for FormatArguments { }
75
+
70
76
impl FormatArguments {
71
77
pub fn new ( ) -> Self {
72
78
Self {
@@ -121,18 +127,22 @@ impl FormatArguments {
121
127
& self . arguments [ ..self . num_explicit_args ]
122
128
}
123
129
124
- pub fn into_vec ( self ) -> Vec < FormatArgument > {
125
- self . arguments
130
+ pub fn all_args ( & self ) -> & [ FormatArgument ] {
131
+ & self . arguments [ ..]
132
+ }
133
+
134
+ pub fn all_args_mut ( & mut self ) -> & mut [ FormatArgument ] {
135
+ & mut self . arguments [ ..]
126
136
}
127
137
}
128
138
129
- #[ derive( Clone , Debug ) ]
139
+ #[ derive( Clone , Encodable , Decodable , Debug ) ]
130
140
pub struct FormatArgument {
131
141
pub kind : FormatArgumentKind ,
132
142
pub expr : P < Expr > ,
133
143
}
134
144
135
- #[ derive( Clone , Debug ) ]
145
+ #[ derive( Clone , Encodable , Decodable , Debug ) ]
136
146
pub enum FormatArgumentKind {
137
147
/// `format_args(…, arg)`
138
148
Normal ,
@@ -152,7 +162,7 @@ impl FormatArgumentKind {
152
162
}
153
163
}
154
164
155
- #[ derive( Clone , Debug , PartialEq , Eq ) ]
165
+ #[ derive( Clone , Encodable , Decodable , Debug , PartialEq , Eq ) ]
156
166
pub struct FormatPlaceholder {
157
167
/// Index into [`FormatArgs::arguments`].
158
168
pub argument : FormatArgPosition ,
@@ -164,7 +174,7 @@ pub struct FormatPlaceholder {
164
174
pub format_options : FormatOptions ,
165
175
}
166
176
167
- #[ derive( Clone , Debug , PartialEq , Eq ) ]
177
+ #[ derive( Clone , Encodable , Decodable , Debug , PartialEq , Eq ) ]
168
178
pub struct FormatArgPosition {
169
179
/// Which argument this position refers to (Ok),
170
180
/// or would've referred to if it existed (Err).
@@ -175,7 +185,7 @@ pub struct FormatArgPosition {
175
185
pub span : Option < Span > ,
176
186
}
177
187
178
- #[ derive( Copy , Clone , Debug , PartialEq , Eq ) ]
188
+ #[ derive( Copy , Clone , Encodable , Decodable , Debug , PartialEq , Eq ) ]
179
189
pub enum FormatArgPositionKind {
180
190
/// `{}` or `{:.*}`
181
191
Implicit ,
@@ -185,7 +195,7 @@ pub enum FormatArgPositionKind {
185
195
Named ,
186
196
}
187
197
188
- #[ derive( Copy , Clone , Debug , Hash , PartialEq , Eq ) ]
198
+ #[ derive( Copy , Clone , Encodable , Decodable , Debug , PartialEq , Eq , Hash ) ]
189
199
pub enum FormatTrait {
190
200
/// `{}`
191
201
Display ,
@@ -207,7 +217,7 @@ pub enum FormatTrait {
207
217
UpperHex ,
208
218
}
209
219
210
- #[ derive( Clone , Debug , Default , PartialEq , Eq ) ]
220
+ #[ derive( Clone , Encodable , Decodable , Default , Debug , PartialEq , Eq ) ]
211
221
pub struct FormatOptions {
212
222
/// The width. E.g. `{:5}` or `{:width$}`.
213
223
pub width : Option < FormatCount > ,
@@ -221,7 +231,7 @@ pub struct FormatOptions {
221
231
pub flags : u32 ,
222
232
}
223
233
224
- #[ derive( Clone , Debug , PartialEq , Eq ) ]
234
+ #[ derive( Copy , Clone , Encodable , Decodable , Debug , PartialEq , Eq ) ]
225
235
pub enum FormatAlignment {
226
236
/// `{:<}`
227
237
Left ,
@@ -231,7 +241,7 @@ pub enum FormatAlignment {
231
241
Center ,
232
242
}
233
243
234
- #[ derive( Clone , Debug , PartialEq , Eq ) ]
244
+ #[ derive( Clone , Encodable , Decodable , Debug , PartialEq , Eq ) ]
235
245
pub enum FormatCount {
236
246
/// `{:5}` or `{:.5}`
237
247
Literal ( usize ) ,
0 commit comments