Lines Matching refs:to_tokens
233 fn to_tokens(&self, tokens: &mut TokenStream) { in to_tokens() method
235 attr.to_tokens(tokens); in to_tokens()
237 self.vis.to_tokens(tokens); in to_tokens()
239 Data::Struct(d) => d.struct_token.to_tokens(tokens), in to_tokens()
240 Data::Enum(d) => d.enum_token.to_tokens(tokens), in to_tokens()
241 Data::Union(d) => d.union_token.to_tokens(tokens), in to_tokens()
243 self.ident.to_tokens(tokens); in to_tokens()
244 self.generics.to_tokens(tokens); in to_tokens()
248 self.generics.where_clause.to_tokens(tokens); in to_tokens()
249 fields.to_tokens(tokens); in to_tokens()
252 fields.to_tokens(tokens); in to_tokens()
253 self.generics.where_clause.to_tokens(tokens); in to_tokens()
254 TokensOrDefault(&data.semi_token).to_tokens(tokens); in to_tokens()
257 self.generics.where_clause.to_tokens(tokens); in to_tokens()
258 TokensOrDefault(&data.semi_token).to_tokens(tokens); in to_tokens()
262 self.generics.where_clause.to_tokens(tokens); in to_tokens()
264 data.variants.to_tokens(tokens); in to_tokens()
268 self.generics.where_clause.to_tokens(tokens); in to_tokens()
269 data.fields.to_tokens(tokens); in to_tokens()