Relative Content

Tag Archive for rustrust-proc-macros

How to loop within quote::quote

Problem Description and Proof of Concept In my attempts of learning new concepts in programming, I usually like to re-implement something which has already been done. In this case I’m trying to learn Rust procedual macros by implementing a csv-like parser. However I ran into some problems. Assuming a struct struct MyStruct { _first_field: String, […]

How to loop within a proc_macro in Rust

Problem Description and Proof of Concept In my attempts of learning new concepts in programming, I usually like to re-implement something which has already been done. In this case I’m trying to learn Rust procedual macros by implementing a csv-like parser. However I ran into some problems. Assuming a struct struct MyStruct { _first_field: String, […]