axum/axum-macros/tests/debug_handler/pass/set_state.rs
Zheng Li 19101f624d
Replace async_trait with AFIT / RPITIT (#2308)
Co-authored-by: Jonas Platte <jplatte+git@posteo.de>
2024-09-28 21:27:11 +00:00

24 lines
437 B
Rust

use axum::extract::{FromRef, FromRequest, Request};
use axum_macros::debug_handler;
#[debug_handler(state = AppState)]
async fn handler(_: A) {}
#[derive(Clone)]
struct AppState;
struct A;
impl<S> FromRequest<S> for A
where
S: Send + Sync,
AppState: FromRef<S>,
{
type Rejection = ();
async fn from_request(_req: Request, _state: &S) -> Result<Self, Self::Rejection> {
unimplemented!()
}
}
fn main() {}