Book Image

Mastering Rust

By : Vesa Kaihlavirta
Book Image

Mastering Rust

By: Vesa Kaihlavirta

Overview of this book

<p>If concurrent programs are giving you sleepless nights, Rust is your go-to language. Being one of the first ever comprehensive books on Rust, it is filled with real-world examples and explanations, showing you how you can build scalable and reliable programs for your organization.</p> <p>We’ll teach you intermediate to advanced level concepts that make Rust a great language. Improving performance, using generics, building macros, and working with threads are just some of the topics we’ll cover. We’ll talk about the official toolsets and ways to discover more. The book contains a mix of theory interspersed with hands-on tasks, so you acquire the skills as well as the knowledge. Since programming cannot be learned by just reading, we provide exercises (and solutions) to hammer the concepts in.</p> <p>After reading this book, you will be able to implement Rust for your enterprise project, deploy the software, and will know the best practices of coding in Rust.</p>
Table of Contents (22 chapters)
Title Page
Credits
About the Author
About the Reviewer
www.PacktPub.com
Customer Feedback
Preface

Chapter 8. Macros

Rust has support for several forms of metaprogramming, which means writing programs that write programs. It can be a very powerful technique that helps surpass limitations of the language itself. It's a rather challenging way to program, however, and requires much more care and consideration than writing regular functions.

The oldest and most stable form of metaprogramming in Rust is syntactic macros. We'll cover those in this chapter.

This chapter will cover the following topics:

  • Introduction to metaprogramming
  • Dissecting println!
  • Macro keywords
  • Repeating constructs
  • Building our own macros