| name | axum-idioms |
| description | Axum HTTP framework patterns — routing, extractors, middleware, state management. For Rust see rust-idioms. |
| paths | ["**/Cargo.toml"] |
Axum Idioms and Patterns
Core Philosophy
Axum (0.8+) rewards composability via Tower, type-safe extractors, and zero-cost abstractions. Idiomatic Axum = thin handlers, tower middleware, typed errors.
Version note: This skill targets Axum 0.8+ (released 2025). Key changes from 0.7: path parameter syntax changed from :name to {name}, State extractor is now in axum::extract, and axum::serve replaces axum::Server. If you encounter an existing codebase on 0.7, check the Axum 0.8 changelog before applying these patterns.
Scope: Axum-specific patterns. For Rust fundamentals: @.agents/skills/rust-idioms/SKILL.md. For project structure: @.agents/skills/rust-idioms/references/project-structure.md.
Router and Route Organization
-
Build routers with Router::new() and method routing:
fn task_routes() -> Router<AppState> {
Router::new()
.route("/tasks", get(list_tasks).post(create_task))
.route("/tasks/{id}", get(get_task).put(update_task).delete(delete_task))
}
fn app(state: Arc<AppState>) -> Router {
let api = Router::new()
.merge(task_routes())
.merge(user_routes());
Router::new()
.nest("/api/v1", api)
.fallback(handle_404)
.with_state(state)
}
-
Path parameters use {name} syntax (not :name).
Extractors
-
Built-in extractors — Path, Query, Json, State, HeaderMap:
async fn get_task(
State(state): State<Arc<AppState>>,
Path(id): Path<Uuid>,
) -> Result<Json<TaskResponse>, AppError> {
let task = state.task_service.find(id).await?;
Ok(Json(task.into()))
}
-
Extractor ordering — body-consuming extractors MUST be last:
async fn update_task(
State(state): State<Arc<AppState>>,
Path(id): Path<Uuid>,
Json(body): Json<UpdateTaskRequest>,
) -> Result<Json<TaskResponse>, AppError> { ... }
async fn update_task(Json(body): Json<UpdateTaskRequest>, Path(id): Path<Uuid>) { ... }
-
Custom extractors via FromRequestParts (non-body) or FromRequest (body):
impl<S: + > FromRequestParts<S> {
= AppError;
(parts: & Parts, _state: &S) <, ::Rejection> {
= parts.headers.(AUTHORIZATION)
.(|v| v.().())
.(|v| v.())
.(AppError::Unauthorized)?;
(token).(|_| AppError::Unauthorized)
}
}
Application State
-
Wrap in Arc, pass via State:
pub struct AppState {
pub db: sqlx::PgPool,
pub task_service: TaskService,
pub config: AppConfig,
}
let state = Arc::new(AppState { db: pool, task_service, config });
let app = Router::new().route("/tasks", get(list_tasks)).with_state(state);
-
Compose state for feature isolation — each feature defines its own state struct, combined at app level.
-
Never clone AppState directly — wrap in Arc, clone the Arc.
Middleware (Tower)
-
ServiceBuilder for layer composition:
let app = Router::new()
.nest("/api/v1", api_routes())
.layer(
ServiceBuilder::new()
.layer(TraceLayer::new_for_http())
.layer(CompressionLayer::new())
.layer(CorsLayer::permissive())
.layer(TimeoutLayer::new(Duration::from_secs(30)))
)
.with_state(state);
Never ship CorsLayer::permissive() to production. It allows any origin, any method, any header, and sends no Access-Control-Allow-Credentials. Use an explicit, allow-listed layer instead. Load allowed origins from config, not literals:
use tower_http::cors::CorsLayer;
use http::HeaderValue;
fn cors_layer(allowed_origins: &[String]) -> CorsLayer {
let origins: Vec<HeaderValue> = allowed_origins
.iter()
.filter_map(|o| HeaderValue::(o).())
.();
CorsLayer::()
.(origins)
.([
axum::http::Method::GET,
axum::http::Method::POST,
axum::http::Method::PUT,
axum::http::Method::DELETE,
])
.([
axum::http::header::AUTHORIZATION,
axum::http::header::CONTENT_TYPE,
axum::http::header::ACCEPT,
])
.()
.(Duration::())
}
Error Handling
-
Unified AppError enum with IntoResponse:
#[derive(Debug, thiserror::Error)]
pub enum AppError {
#[error("not found: {0}")] NotFound(String),
#[error("validation failed: {0}")] Validation(String),
#[error("unauthorized")] Unauthorized,
#[error("forbidden")] Forbidden,
#[error(transparent)] Internal(#[from] anyhow::Error),
}
impl IntoResponse for AppError {
fn into_response(self) -> Response {
let (status, msg) = match &self {
Self::NotFound(m) => (StatusCode::NOT_FOUND, m.clone()),
Self::Validation(m) => (StatusCode::UNPROCESSABLE_ENTITY, m.clone()),
Self::Unauthorized => (StatusCode::UNAUTHORIZED, "unauthorized".into()),
Self::Forbidden => (StatusCode::FORBIDDEN, "forbidden".into()),
Self::(e) => {
tracing::error!(error = %e, );
(StatusCode::INTERNAL_SERVER_ERROR, .())
}
};
(status, (serde_json::json!({ : msg }))).()
}
}
Response Types
Json<T> for standard responses, (StatusCode, Json<T>) tuple for non-200:
async fn list_tasks(...) -> Result<Json<Vec<TaskResponse>>, AppError> { ... }
async fn create_task(...) -> Result<(StatusCode, Json<TaskResponse>), AppError> {
Ok((StatusCode::CREATED, Json(task.into())))
}
Response builder for headers, streaming, or non-JSON (CSV, files).
Validation
-
validator crate with #[derive(Validate)]:
#[derive(Debug, Deserialize, Validate)]
pub struct CreateTaskRequest {
#[validate(length(min = 1, max = 255))]
pub title: String,
#[validate(range(min = 1, max = 5))]
pub priority: u8,
}
-
Custom ValidatedJson<T> extractor — implement FromRequest<S> that deserializes via Json<T> then calls value.validate(), converting failures to AppError::Validation:
use axum::extract::{FromRequest, Request};
use axum::Json;
use serde::de::DeserializeOwned;
use validator::Validate;
pub struct ValidatedJson<T>(pub T);
impl<S, T> FromRequest<S> for ValidatedJson<T>
where
S: Send + Sync,
T: DeserializeOwned + Validate,
{
type Rejection = AppError;
async fn from_request(req: Request, state: &S) -> Result<Self, Self::Rejection> {
let Json(value) = Json::<T>::from_request(req, state)
.await
.map_err(|e| AppError::(e.()))?;
value.().(|e| AppError::(e.()))?;
((value))
}
}
(
(state): State<Arc<AppState>>,
(body): ValidatedJson<CreateTaskRequest>,
) <(StatusCode, Json<TaskResponse>), AppError> {
= state.task_service.(body).?;
((StatusCode::CREATED, (task.())))
}
Response Types and Domain Conversion
-
Separate request and response types — never expose domain models directly to the API:
#[derive(Debug, Deserialize, Validate)]
#[serde(rename_all = "camelCase")]
pub struct CreateTaskRequest {
#[validate(length(min = 1, max = 255))]
pub title: String,
#[serde(default)]
pub description: Option<String>,
#[validate(range(min = 1, max = 5))]
#[serde(default = "default_priority")]
pub priority: u8,
}
fn default_priority() -> u8 { 3 }
#[derive(Debug, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct TaskResponse {
pub id: Uuid,
pub title: String,
#[serde(skip_serializing_if = "Option::is_none")]
pub description: Option<String>,
pub priority: u8,
pub created_at: DateTime<Utc>,
}
impl From<Task> for TaskResponse {
(task: Task) {
{
id: task.id,
title: task.title,
description: task.description,
priority: task.priority,
created_at: task.created_at,
}
}
}
Testing
For universal testing principles, see .agents/rules/testing-strategy.md. Below: Axum-specific patterns only.
-
tower::ServiceExt::oneshot — test handlers without spawning a server:
#[tokio::test]
async fn test_create_task_returns_201() {
let app = app(Arc::new(test_app_state().await));
let response = app.oneshot(
Request::builder().method("POST").uri("/api/v1/tasks")
.header("content-type", "application/json")
.body(Body::from(r#"{"title":"Test","priority":3}"#)).unwrap(),
).await.unwrap();
assert_eq!(response.status(), StatusCode::CREATED);
}
-
Mock state helpers — inject trait-based test doubles for isolation:
fn test_app_state() -> Arc<AppState> {
let mock_task_service = MockTaskService::new();
Arc::new(AppState {
task_service: Box::(mock_task_service),
config: (),
})
}
Graceful Shutdown
Container orchestrators (Kubernetes, Docker stop) send SIGTERM, not SIGINT — handle BOTH. Use tokio_util::sync::CancellationToken (the recommended cancellation primitive per @.agents/skills/rust-idioms/SKILL.md §Async and Concurrency) so in-flight handlers and background tasks can observe the shutdown and unwind cooperatively. Axum's with_graceful_shutdown then drains active connections before exiting.
use tokio::signal;
use tokio_util::sync::CancellationToken;
let shutdown = CancellationToken::new();
let state = Arc::new(AppState { shutdown: shutdown.clone() });
let listener = tokio::net::TcpListener::bind("0.0.0.0:3000").await?;
axum::serve(listener, app)
.with_graceful_shutdown(shutdown_signal(shutdown.clone()))
.await?;
async fn shutdown_signal(token: CancellationToken) {
let ctrl_c = async { signal::ctrl_c().await.expect("install ctrl-c handler") };
#[cfg(unix)]
let terminate = async {
signal::unix::signal(signal::unix::SignalKind::terminate())
.expect("install SIGTERM handler")
.recv().await;
};
#[cfg(not(unix))]
let terminate = std::future::pending::<()>();
tokio::select! {
_ = ctrl_c => tracing::info!("SIGINT received, shutting down"),
_ = terminate => tracing::info!("SIGTERM received, shutting down"),
}
token.cancel();
}
Why: Axum stops accepting new connections and drains in-flight requests before exiting. The shared CancellationToken lets your background workers (queue consumers, scheduled jobs, long-poll handlers) observe the same shutdown and exit cooperatively instead of being killed mid-write. Add tokio-util (with the rt feature) to your dependencies. See rust-idioms §Async and Concurrency for the cancellation-safety policy.
Anti-Patterns
- ❌ Business logic in handlers — extract to a service/logic layer; handlers only parse, delegate, respond
- ❌
Extension instead of State — Extension is untyped and pre-0.6; use State<T> always
- ❌ Cloning entire state — wrap in
Arc, clone the Arc
- ❌ Blocking in async handlers — use
tokio::task::spawn_blocking for CPU-bound or blocking I/O
- ❌ Wrong extractor ordering — body-consuming extractors (
Json, Form) must be the last parameter
- ❌ Returning string errors — use typed
AppError with IntoResponse for consistent error shape
- ❌ Leaking internal error details — log with
tracing::error!, return generic message to client
Formatting and Static Analysis
Same tooling as Rust. See @.agents/skills/rust-idioms/SKILL.md#clippy-and-formatting.
Related
- Code Idioms and Conventions @.agents/rules/code-idioms-and-conventions.md
- Rust Idioms @.agents/skills/rust-idioms/SKILL.md
- API Design Principles @.agents/rules/api-design-principles.md
- Security Principles @.agents/rules/security-principles.md
- Error Handling Principles @.agents/rules/error-handling-principles.md
- Architectural Patterns @.agents/rules/architectural-pattern.md
- Testing Strategy @.agents/rules/testing-strategy.md
- Logging and Observability Mandate @.agents/rules/logging-and-observability-mandate.md
- Logging Implementation @.agents/skills/logging-implementation/SKILL.md
- Serde Patterns @.agents/skills/rust-idioms/references/serde-patterns.md
- SQLx Patterns @.agents/skills/rust-idioms/references/sqlx-patterns.md