mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-23 07:39:25 +01:00
64960bb19c
* Make state type safe * fix examples * remove unnecessary `#[track_caller]`s * Router::into_service -> Router::with_state * fixup docs * macro docs * add missing docs * fix examples * format * changelog * Update trybuild tests * Make sure fallbacks are still inherited for opaque services (#1540) * Document nesting routers with different state * fix leftover conflicts
35 lines
695 B
Rust
35 lines
695 B
Rust
use axum::{
|
|
extract::{State, FromRef},
|
|
routing::get,
|
|
Router,
|
|
};
|
|
use axum_macros::FromRequest;
|
|
|
|
fn main() {
|
|
let _: axum::routing::RouterService = Router::new()
|
|
.route("/a", get(|_: AppState| async {}))
|
|
.route("/b", get(|_: InnerState| async {}))
|
|
.with_state(AppState::default());
|
|
}
|
|
|
|
#[derive(Clone, FromRequest)]
|
|
#[from_request(via(State))]
|
|
enum AppState {
|
|
One,
|
|
}
|
|
|
|
impl Default for AppState {
|
|
fn default() -> AppState {
|
|
Self::One
|
|
}
|
|
}
|
|
|
|
#[derive(FromRequest)]
|
|
#[from_request(via(State), state(AppState))]
|
|
enum InnerState {}
|
|
|
|
impl FromRef<AppState> for InnerState {
|
|
fn from_ref(_: &AppState) -> Self {
|
|
todo!(":shrug:")
|
|
}
|
|
}
|