Rust,
gently.
A field guide to Rust for builders whose agents write most of the code. Twenty chapters, rebuilt from The Rust Book, retold through the orchestrator's lens, grounded in real snippets from a production query engine.
- No GC
Peak performance at request one. No warmup, no garbage collector to tune.
- Send and Sync
Data races become compile errors. Concurrency is a type check, not a code review item.
- Arrow columnar
Engines share record batches across processes and languages without copying bytes.
Four tracks, one mission.
Read in any orderThe full Rust Book retold for orchestrators. Twenty chapters from getting started to a hand-built web server, each one threaded with what to grep for in agent-written code.
The operational manual. Twelve failure modes, the cargo gates, prompting templates that work, a five-minute PR review playbook, the compiler-error decoder.
The fast paths through the same material as the book. Open one when you want the answer now: ownership, errors, traits, async, the five questions for any Rust file.
Where Rust matters: query engines, AI inference, agent infra, web/systems. Then a real tour through the Sail codebase — 36 crates, one query engine, every concept in production.
If you only have one evening.
The minimum viable path to start reviewing agent-written Rust by tomorrow.
- iGet the shape
Where Rust code lives, how it compiles, why people write it.
- iiRead ownership
The thing the borrow checker is asking about. Most agent-written bugs live here.
- iiiRead error handling
The other half of agent-written bugs.
- ivSee the failure modes
Twelve concrete patterns to grep for in any Rust diff.
- vInstall the gates
Make the agent prove correctness instead of arguing about it.
- viRun the playbook
Five questions, five minutes, every PR.
- A handbook for orchestrators of agent-written Rust.
- The classic Rust Book reframed for the workflow most builders actually have.
- Sail-biased examples from a real Rust query engine.
- Aggressively short. Every section earns its place.
- A reference for hand-writing production Rust from scratch.
- An advanced systems-programming text.
- Comprehensive. It is a filter, not a firehose.
- A replacement for the original Rust Book, which you should also read.