mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-29 19:52:40 +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
36 lines
759 B
Rust
36 lines
759 B
Rust
use axum::{
|
|
extract::{State, FromRef},
|
|
routing::get,
|
|
Router,
|
|
};
|
|
use axum_macros::FromRequestParts;
|
|
|
|
fn main() {
|
|
let _: axum::Router = Router::new()
|
|
.route("/a", get(|_: AppState| async {}))
|
|
.route("/b", get(|_: InnerState| async {}))
|
|
.route("/c", get(|_: AppState, _: InnerState| async {}))
|
|
.with_state(AppState::default());
|
|
}
|
|
|
|
#[derive(Clone, FromRequestParts)]
|
|
#[from_request(via(State))]
|
|
enum AppState {
|
|
One,
|
|
}
|
|
|
|
impl Default for AppState {
|
|
fn default() -> AppState {
|
|
Self::One
|
|
}
|
|
}
|
|
|
|
#[derive(FromRequestParts)]
|
|
#[from_request(via(State), state(AppState))]
|
|
enum InnerState {}
|
|
|
|
impl FromRef<AppState> for InnerState {
|
|
fn from_ref(_: &AppState) -> Self {
|
|
todo!(":shrug:")
|
|
}
|
|
}
|