axum/axum-macros/tests/from_request/pass/state_via_infer.rs
2024-11-26 18:04:01 +00:00

14 lines
417 B
Rust

use axum::{extract::State, routing::get, Router};
use axum_macros::FromRequest;
fn main() {
let _: axum::Router = Router::new()
.route("/b", get(|_: AppState| async {}))
.with_state(AppState::default());
}
// if we're extract "via" `State<AppState>` and not specifying state
// assume `AppState` is the state
#[derive(Clone, Default, FromRequest)]
#[from_request(via(State))]
struct AppState {}