Rust for Rustaceans Book Club: Chapter 7 - Macros

preview_player
Показать описание
Join us as we work through the excellent Rust for Rustaceans by Jon Gjengset together. The book is an excellent next step for diving that little bit deeper into understanding Rust. To get the most out of these sessions, reading the chapter before hand is strongly recommended, but not required.

This session covered Chapter 7: Macros. Macros are an extremely powerful metaprogramming tool, and this chapter walks through the essentials for reading and writing Rust's declarative and procedural macros, a bit about how they work, and when they might be used.

Useful Links:

Previous meetups on the topic:

Presenter(s): Ciara

Meetup info:
You can also find us on discord, drop us a message to be sent the link.

Big thank you to Esri for sponsoring our meetup page
Рекомендации по теме
Комментарии
Автор

nice presentation! :) to add up on the questions at the end, another common use case for macros (in production too) is to alleviate boilerplate when making heavy use of newtype pattern.

Roms