MENU

Fun & Interesting

Procedural Macros in Rust (part 1)

Jon Gjengset 73,197 lượt xem 5 years ago
Video Not Working? Fix It Now

In this stream, we take a look at Rust's procedural macros. These are much more flexible than the declarative macros you get with the macro_rules! construct, and effectively allow you to write source-code transformations as a separate program. Take a look at https://doc.rust-lang.org/book/ch19-06-macros.html and https://doc.rust-lang.org/nightly/reference/procedural-macros.html for details.

In particular, we follow David Tolnay's excellent proc-macro workshop from Rust Latam back in March 2019: https://github.com/dtolnay/proc-macro-workshop. The goal is to implement the custom derive(Builder) project (the first one listed). We managed to get all the way through and then some!

For tools, we ended up relying quite heavily on David's https://github.com/dtolnay/syn and https://github.com/dtolnay/quote, as well as the very handy cargo-expand tool: https://github.com/dtolnay/cargo-expand.

You can find the code over at https://github.com/jonhoo/proc-macro-workshop.

Oh, and the issue with formatting doc comments we encountered at the end has already been fixed @ https://github.com/rust-lang/rustfmt/pull/3548 !

You can see the live version with comments at https://www.youtube.com/watch?v=0-sMn2fXYG4

Comment