wertasy 发表于 2020-05-18 11:26
Tags:宏
想要系统地学习一下rust的宏,大家有什么值得推荐的学习资料吗?
先把 Rust Book 中关于宏的那一章看一遍。(中文版)。
然后,想深入了解声明宏的话,可以看《The Little Book of Rust Macros》。
想深入了解过程宏的话,可以看 procedural macros workshop,并参考 syn 和 quote 这两个 crate 的文档。
声明宏:
过程宏:
https://danielkeep.github.io/tlborm/book/index.html
评论区
写评论先把 Rust Book 中关于宏的那一章看一遍。(中文版)。
然后,想深入了解声明宏的话,可以看《The Little Book of Rust Macros》。
想深入了解过程宏的话,可以看 procedural macros workshop,并参考 syn 和 quote 这两个 crate 的文档。
声明宏:
过程宏:
https://danielkeep.github.io/tlborm/book/index.html