mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-22 15:17:18 +01:00
35 lines
676 B
Rust
35 lines
676 B
Rust
use axum::{
|
|
extract::{FromRef, State},
|
|
routing::get,
|
|
Router,
|
|
};
|
|
use axum_macros::FromRequest;
|
|
|
|
fn main() {
|
|
let _: axum::Router = 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!("🤷")
|
|
}
|
|
}
|