Can any of my followers explain to me/point me to info on the current status of Rust’s proc macro implementation? I’ve never actually written any Rust, I just observe from afar, but I have a vested interest in macrology, and I’d like to better understand the Rust macro status quo
Conversation
Replying to
IIUC (from people with more experience than me) things can get rather complicated due to the interplay between procedural macros and incremental compilation, trait resolution, type checking, const eval, etc. Not sure how much of this stuff is documented though.

