#meta #syn #struct #parse #parser #to-tokens

syn-unnamed-struct

Extends syn expressions and meta structs with unnamed structs and meta lists

1 unstable release

0.1.0 Apr 3, 2022

#2019 in Procedural macros

Download history 9/week @ 2024-01-01 39/week @ 2024-01-08 29/week @ 2024-01-15 32/week @ 2024-01-22 49/week @ 2024-01-29 21/week @ 2024-02-05 38/week @ 2024-02-12 49/week @ 2024-02-19 74/week @ 2024-02-26 69/week @ 2024-03-04 121/week @ 2024-03-11 87/week @ 2024-03-18 56/week @ 2024-03-25 73/week @ 2024-04-01 46/week @ 2024-04-08 42/week @ 2024-04-15

221 downloads per month
Used in derive-from-ext

MIT/Apache

18KB
432 lines

syn_unnamed_struct

Parse and convert structs with no name to tokens. For usage in attribute macro arguments in place of Meta attributes to allow more structured data to be used (nested objects).

Usage in derive macro definition

use syn_unnamed_struct::Meta;

#[proc_macro_derive(CustomMacro, attributes(customMacro))]
pub fn derive(tokens: TokenStream) -> TokenStream {
    let input = parse_macro_input!(tokens);
    
    input.attrs.map(|attr| {
        let obj: Meta = attr.parse().expect("Coult not parse attribute");
        
        //can now interact and extract the properties from the Meta enum
        //...
    });
}

Example macro usage

#[derive(CustomMacro)]
#[customMacro(name="something", other={ entry1: "val1", entry2: "val2" })]
struct MyStruct {
    //...
}

Supported attributes

  • Unnamed structs
#[customMacro({ prop1: 123, prop2: 245 })]
  • Nested unnamed structs
#[customMacro({ prop1: 123, prop2: { prop2a: 123, prop2b: 245 } })]
  • Unnamed struct in Meta value
#[customMacro(prop1=123, prop2={ prop2a: 123, prop2b: 245 })]
  • Unnamed Meta list
#[customMacro(prop1, prop2, (prop3a=123, prop3b=245)))]
  • Nested unnamed Meta lists
#[customMacro(prop1=123, prop2=(prop2a=123, prop2b=245)))]

Notes

  • Cannot use darling since it is entwined with the syn Meta structs

Dependencies

~1.5MB
~34K SLoC