mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-22 15:17:18 +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
37 lines
749 B
Rust
37 lines
749 B
Rust
use std::convert::Infallible;
|
|
use axum::{
|
|
extract::State,
|
|
response::{IntoResponse, Response},
|
|
routing::get,
|
|
Router,
|
|
};
|
|
use axum_macros::FromRequest;
|
|
|
|
fn main() {
|
|
let _: axum::routing::RouterService = Router::new()
|
|
.route("/a", get(|_: Extractor| async {}))
|
|
.with_state(AppState::default());
|
|
}
|
|
|
|
#[derive(Clone, Default, FromRequest)]
|
|
#[from_request(rejection(MyRejection))]
|
|
struct Extractor {
|
|
state: State<AppState>,
|
|
}
|
|
|
|
#[derive(Clone, Default)]
|
|
struct AppState {}
|
|
|
|
struct MyRejection {}
|
|
|
|
impl From<Infallible> for MyRejection {
|
|
fn from(err: Infallible) -> Self {
|
|
match err {}
|
|
}
|
|
}
|
|
|
|
impl IntoResponse for MyRejection {
|
|
fn into_response(self) -> Response {
|
|
().into_response()
|
|
}
|
|
}
|