I absolutely love this format. Concise and to the point; makes for a quick and easy read. There are many of nuggets of rust expertise sprinkled throughout, and that’s where much of the value of this book comes from in my opinion. Note that these are real-world Rust patterns or practical considerations (eg, design patterns, considerations to make when exposing public parts of an interface, aspects and invariants of safety you need to consider when wrapping an unsafe API) rather than nitty gritty details about compiler internals or super specific details about how to write macros, etc. The strength of this book is the practical guidance. In that sense, I see this as basically the best equivalent of Effective Java or Effective Modern C++, but for Rust. On the other hand, these nuggets are not specifically called out or organized in a way amenable for quick reference, so I found myself taking my own notes along the way. YMMV, depending on what you’re looking for. On the other hand, the book is concise enough that I think most people should read it end-to-end anyway.
The book does go into some depth on selected topics, such as async internals and atomics, but not enough for the reader to gain any level of expertise. For that level of understanding, you’ll need to look elsewhere and likely hack on the internals yourself (or at least read the code).