How to make sure that a Rust attribute proc macro runs before the compiler tries parsing the item?...
Read MoreAutomatically create enum variants...
Read MoreWhy is "-x" trying to parse as a literal and failing in declarative macros?...
Read More"unnecessary parens" warning in macro call that needs the parens - is this a bad way to wr...
Read MoreCan I specify an operator or other syntactic literal within a macro input?...
Read MoreHow to make rust macro optional token produce code when not present?...
Read MoreHow to split an ident into letters in Rust macro?...
Read MorePassing & and &mut through macro matched types...
Read MoreHow can I add 'unsafe extern "C"' to a fn type in a declarative macro?...
Read MoreMacros, How to generate enum variant from str literal?...
Read MoreHow to write a custom derive macro?...
Read MoreHow to import required types inside of a custom derive macro?...
Read MoreCan a macro access the field names and types of a remote struct from its path?...
Read More"no rules expected the token" when using macro to implement methods...
Read MoreIs there a consistent compilation context inside a proc_macro_attribute function?...
Read MoreExpose struct generated from quote macro without appearing out of nowhere...
Read MoreRust macro accept call to member function...
Read MoreDirectly parse data on nested proc macro...
Read MoreWhy does tt in declarative macros not expect the token "::"?...
Read Moreexpected one of `!` or `::`, found _ - rust macro with items...
Read MoreProcedural macro inside Syntactic macro error...
Read MoreCompile time check if file at path exists? like include_str!(..)...
Read MoreIs there any performance difference between macros and functions in Rust?...
Read MoreRust macro to format arguments over multiple formats...
Read MoreExporting declarative macro that uses functions defined in crate...
Read Morerepeat a group of tokens in a macro...
Read MoreAccept multiple values on proc macro attribute...
Read More