Rust Best Practices
Apply these guidelines when writing or reviewing Rust code. Based on Apollo GraphQL's Rust Best Practices Handbook.
Best Practices Reference
Before reviewing, familiarize yourself with Apollo's Rust best practices. Read ALL relevant chapters in the same turn in parallel. Reference these files when providing feedback:
- Chapter 1 - Coding Styles and Idioms: Borrowing vs cloning, Copy trait, Option/Result handling, iterators, comments
- Chapter 2 - Clippy and Linting: Clippy configuration, important lints, workspace lint setup
- Chapter 3 - Performance Mindset: Profiling, avoiding redundant clones, stack vs heap, zero-cost abstractions
- Chapter 4 - Error Handling: Result vs panic, thiserror vs anyhow, error hierarchies
- Chapter 5 - Automated Testing: Test naming, one assertion per test, snapshot testing
- Chapter 6 - Generics and Dispatch: Static vs dynamic dispatch, trait objects
- Chapter 7 - Type State Pattern: Compile-time state safety, when to use it
- Chapter 8 - Comments vs Documentation: When to comment, doc comments, rustdoc
- Chapter 9 - Understanding Pointers: Thread safety, Send/Sync, pointer types
Quick Reference
Borrowing & Ownership
- Prefer
&T over .clone() unless ownership transfer is required
- Use
&str over String, &[T] over Vec<T> in function parameters
- Small
Copy types (≤24 bytes) can be passed by value
- Use
Cow<'_, T> when ownership is ambiguous
Error Handling
- Return
Result<T, E> for fallible operations; avoid panic! in production
- Never use
unwrap()/expect() outside tests
- Use
thiserror for library errors, anyhow for binaries only
- Prefer
? operator over match chains for error propagation
Performance
- Always benchmark with
--release flag
- Run
cargo clippy -- -D clippy::perf for performance hints
- Avoid cloning in loops; use
.iter() instead of .into_iter() for Copy types
- Prefer iterators over manual loops; avoid intermediate
.collect() calls
Linting
Run regularly: cargo clippy --all-targets --all-features --locked -- -D warnings
Key lints to watch:
redundant_clone - unnecessary cloning
large_enum_variant - oversized variants (consider boxing)
needless_collect - premature collection
Use #[expect(clippy::lint)] over #[allow(...)] with justification comment.
Testing
- Name tests descriptively:
process_should_return_error_when_input_empty()
- One assertion per test when possible
- Use doc tests (
///) for public API examples
- Consider
cargo insta for snapshot testing generated output
Generics & Dispatch
- Prefer generics (static dispatch) for performance-critical code
- Use
dyn Trait only when heterogeneous collections are needed
- Box at API boundaries, not internally
Type State Pattern
Encode valid states in the type system to catch invalid operations at compile time:
struct Connection<State> { /* ... */ _state: PhantomData<State> }
struct Disconnected;
struct Connected;
impl Connection<Connected> {
fn send(&self, data: &[u8]) { /* only connected can send */ }
}
Documentation
// comments explain why (safety, workarounds, design rationale)
/// doc comments explain what and how for public APIs
- Every
TODO needs a linked issue: // TODO(#42): ...
- Enable
#![deny(missing_docs)] for libraries
Source: bl1nk-bot/bl1nk-agents-manager — distributed by TomeVault.
1---2name: bl1nk-bot-bl1nk-agents-manager-rust-best-practices3description: Rust Best Practices4---56# Rust Best Practices78Apply these guidelines when writing or reviewing Rust code. Based on Apollo GraphQL's [Rust Best Practices Handbook](https://github.com/apollographql/rust-best-practices).910## Best Practices Reference1112Before reviewing, familiarize yourself with Apollo's Rust best practices. Read ALL relevant chapters in the same turn in parallel. Reference these files when providing feedback:1314- [Chapter 1 - Coding Styles and Idioms](references/chapter_01.md): Borrowing vs cloning, Copy trait, Option/Result handling, iterators, comments15- [Chapter 2 - Clippy and Linting](references/chapter_02.md): Clippy configuration, important lints, workspace lint setup16- [Chapter 3 - Performance Mindset](references/chapter_03.md): Profiling, avoiding redundant clones, stack vs heap, zero-cost abstractions17- [Chapter 4 - Error Handling](references/chapter_04.md): Result vs panic, thiserror vs anyhow, error hierarchies18- [Chapter 5 - Automated Testing](references/chapter_05.md): Test naming, one assertion per test, snapshot testing19- [Chapter 6 - Generics and Dispatch](references/chapter_06.md): Static vs dynamic dispatch, trait objects20- [Chapter 7 - Type State Pattern](references/chapter_07.md): Compile-time state safety, when to use it21- [Chapter 8 - Comments vs Documentation](references/chapter_08.md): When to comment, doc comments, rustdoc22- [Chapter 9 - Understanding Pointers](references/chapter_09.md): Thread safety, Send/Sync, pointer types2324## Quick Reference2526### Borrowing & Ownership2728- Prefer `&T` over `.clone()` unless ownership transfer is required29- Use `&str` over `String`, `&[T]` over `Vec<T>` in function parameters30- Small `Copy` types (≤24 bytes) can be passed by value31- Use `Cow<'_, T>` when ownership is ambiguous3233### Error Handling3435- Return `Result<T, E>` for fallible operations; avoid `panic!` in production36- Never use `unwrap()`/`expect()` outside tests37- Use `thiserror` for library errors, `anyhow` for binaries only38- Prefer `?` operator over match chains for error propagation3940### Performance4142- Always benchmark with `--release` flag43- Run `cargo clippy -- -D clippy::perf` for performance hints44- Avoid cloning in loops; use `.iter()` instead of `.into_iter()` for Copy types45- Prefer iterators over manual loops; avoid intermediate `.collect()` calls4647### Linting4849Run regularly: `cargo clippy --all-targets --all-features --locked -- -D warnings`5051Key lints to watch:5253- `redundant_clone` - unnecessary cloning54- `large_enum_variant` - oversized variants (consider boxing)55- `needless_collect` - premature collection5657Use `#[expect(clippy::lint)]` over `#[allow(...)]` with justification comment.5859### Testing6061- Name tests descriptively: `process_should_return_error_when_input_empty()`62- One assertion per test when possible63- Use doc tests (`///`) for public API examples64- Consider `cargo insta` for snapshot testing generated output6566### Generics & Dispatch6768- Prefer generics (static dispatch) for performance-critical code69- Use `dyn Trait` only when heterogeneous collections are needed70- Box at API boundaries, not internally7172### Type State Pattern7374Encode valid states in the type system to catch invalid operations at compile time:7576```rust77struct Connection<State> { /* ... */ _state: PhantomData<State> }78struct Disconnected;79struct Connected;8081impl Connection<Connected> {82 fn send(&self, data: &[u8]) { /* only connected can send */ }83}84```8586### Documentation8788- `//` comments explain *why* (safety, workarounds, design rationale)89- `///` doc comments explain *what* and *how* for public APIs90- Every `TODO` needs a linked issue: `// TODO(#42): ...`91- Enable `#![deny(missing_docs)]` for libraries9293---94> Source: [bl1nk-bot/bl1nk-agents-manager](https://github.com/bl1nk-bot/bl1nk-agents-manager) — distributed by [TomeVault](https://tomevault.io).95<!-- tomevault:4.0:skill_md:2026-06-16 -->