Hey everyone,
I'm working on implementing a derive macro, and one of the things I need to do is use the repetition syntax. However, the items in my iterator have fields which I need to access seperately. This is what I tried:
#(counter += Trait::trait_function::<#fields.ty>(&self.#fields.ident.unwrap())?);*
However, I cannot figure out how to access fields directly in the quote! block. How do I do this?