mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-26 00:56:27 +01:00
0b26411f39
* Implement `Service` for `Router<(), B>` * wip * wip * fix some tests * fix examples * fix doc tests * clean up docs * changelog * fix * also call `with_state` when converting `MethodRouter` into a `MakeService` * suggestions from review
45 lines
816 B
Rust
45 lines
816 B
Rust
use axum_macros::FromRequest;
|
|
use axum::{
|
|
extract::{FromRef, State},
|
|
Router,
|
|
routing::get,
|
|
};
|
|
|
|
fn main() {
|
|
let _: axum::Router = Router::new()
|
|
.route("/b", get(|_: Extractor| async {}))
|
|
.with_state(AppState::default());
|
|
}
|
|
|
|
#[derive(FromRequest)]
|
|
#[from_request(state(AppState))]
|
|
struct Extractor {
|
|
app_state: State<AppState>,
|
|
one: State<One>,
|
|
two: State<Two>,
|
|
other_extractor: String,
|
|
}
|
|
|
|
#[derive(Clone, Default)]
|
|
struct AppState {
|
|
one: One,
|
|
two: Two,
|
|
}
|
|
|
|
#[derive(Clone, Default)]
|
|
struct One {}
|
|
|
|
impl FromRef<AppState> for One {
|
|
fn from_ref(input: &AppState) -> Self {
|
|
input.one.clone()
|
|
}
|
|
}
|
|
|
|
#[derive(Clone, Default)]
|
|
struct Two {}
|
|
|
|
impl FromRef<AppState> for Two {
|
|
fn from_ref(input: &AppState) -> Self {
|
|
input.two.clone()
|
|
}
|
|
}
|