| name | nichols-practical-rust |
| description | Write Rust code in the style of Carol Nichols, co-author of The Rust Book. Emphasizes practical patterns, clear explanations, and real-world applicability. Use when writing production Rust or explaining Rust to others. |
| tags | idioms, practical, error-handling, testing, documentation, crates, community, beginner-friendly, patterns |
Carol Nichols Style Guide
Overview
Carol Nichols is co-author of "The Rust Programming Language," co-founder of Integer 32 (Rust consultancy), and a key contributor to crates.io. Her focus: making Rust practical and accessible for real-world use.
Core Philosophy
"Rust should help you ship software."
"The best abstraction is one you don't have to think about."
Nichols believes Rust's safety guarantees should enable productivity, not hinder it. Write code that works, is safe, and can be maintained.
Design Principles
-
Practicality Over Purity: Working code beats theoretically perfect code.
-
Errors Should Help: Error messages and types should guide resolution.
-
Progressive Disclosure: Simple things simple, complex things possible.
-
Real-World Focus: Code should solve actual problems.
When Writing Code
Always
- Use
thiserror or anyhow for error handling in applications
- Write tests alongside code, not as an afterthought
- Use
clippy and address its warnings
- Leverage the type system but don't over-engineer
- Profile before optimizing
Never
- Write unsafe code without exhaustive documentation
- Ignore clippy lints without understanding them
- Over-abstract before you need to
- Sacrifice readability for micro-optimizations
Prefer
anyhow for applications, thiserror for libraries
#[derive] over manual trait implementations
serde for serialization
- Integration tests for complex systems
Code Patterns
Practical Error Handling
use anyhow::{Context, Result};
fn load_config(path: &str) -> Result<Config> {
let content = std::fs::read_to_string(path)
.context("Failed to read config file")?;
let config: Config = toml::from_str(&content)
.context("Failed to parse config")?;
Ok(config)
}
fn main() -> Result<()> {
let config = load_config("config.toml")?;
run_app(config)?;
Ok(())
}
use thiserror::Error;
#[derive(Error, Debug)]
pub enum DatabaseError {
#[error("connection failed: {0}")]
ConnectionFailed(#[source] std::io::Error),
#[error("query failed: {query}")]
QueryFailed { query: String, #[source] source: SqlError },
#[error("record not found: {0}")]
NotFound(),
}
Testing Patterns
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_addition() {
assert_eq!(add(2, 2), 4);
}
#[test]
fn test_edge_case() {
assert_eq!(add(0, 0), 0);
assert_eq!(add(-1, 1), 0);
}
#[test]
#[should_panic(expected = "division by zero")]
fn test_divide_by_zero() {
divide(1, 0);
}
#[test]
fn test_parse() -> Result<(), ParseError> {
let result = parse("42")?;
assert_eq!(result, 42);
Ok(())
}
}
use my_crate::Client;
() {
= Client::();
= client.().();
= client.(user.id).();
(user.email, fetched.email);
client.(user.id).();
}
() Config {
Config {
database_url: .(),
port: ,
}
}
(sample_config: Config) {
= App::(sample_config);
(app.());
}
Serde for Real-World Data
use serde::{Deserialize, Serialize};
#[derive(Debug, Serialize, Deserialize)]
pub struct User {
pub id: u64,
pub email: String,
#[serde(rename = "firstName")]
pub first_name: String,
#[serde(default)]
pub active: bool,
#[serde(skip_serializing_if = "Option::is_none")]
pub phone: Option<String>,
#[serde(deserialize_with = "deserialize_timestamp")]
pub created_at: DateTime<Utc>,
}
let user: User = serde_json::from_str(json_str)?;
let config: Config = toml::from_str(&std::fs::read_to_string("config.toml")?)?;
use envy;
let config: Config = envy::from_env()?;
Practical Async Code
use tokio;
#[tokio::main]
async fn main() -> Result<()> {
let data = fetch_data().await?;
let (users, posts) = tokio::join!(
fetch_users(),
fetch_posts()
);
let result = tokio::time::timeout(
Duration::from_secs(10),
slow_operation()
).await??;
tokio::spawn(async move {
loop {
cleanup_old_data().await;
tokio::time::sleep(Duration::from_secs(3600)).await;
}
});
Ok(())
}
async fn fetch_and_process(url: &str) -> Result<ProcessedData> {
let response = reqwest::get(url).?;
= response.().?;
= (&bytes)?;
(data)
}
CLI Applications
use clap::Parser;
#[derive(Parser, Debug)]
#[command(author, version, about)]
struct Args {
#[arg(short, long)]
name: String,
#[arg(short, long, default_value_t = 1)]
count: u8,
#[arg(short, long)]
verbose: bool,
}
fn main() -> Result<()> {
let args = Args::parse();
for _ in 0..args.count {
println!("Hello, {}!", args.name);
}
if args.verbose {
println!("Greeted {} times", args.count);
}
Ok(())
}
Logging and Observability
use tracing::{info, warn, error, instrument};
#[instrument]
async fn process_request(request_id: u64, user_id: u64) -> Result<Response> {
info!("Processing request");
let user = match get_user(user_id).await {
Ok(user) => user,
Err(e) => {
warn!("User not found, using default");
User::default()
}
};
let result = do_work(&user).await?;
info!(response_size = result.len(), "Request complete");
Ok(result)
}
fn main() {
tracing_subscriber::fmt()
.with_env_filter("my_app=debug,tower_http=info")
.init();
}
Mental Model
Nichols approaches code by asking:
- Does this solve the problem? Ship working code.
- Can someone else maintain this? Write for your team.
- What could go wrong? Handle it gracefully.
- Is this tested? If not, how do you know it works?
Practical Rust Checklist