mirror of
https://github.com/tokio-rs/axum.git
synced 2024-12-16 03:42:08 +01:00
19101f624d
Co-authored-by: Jonas Platte <jplatte+git@posteo.de>
24 lines
437 B
Rust
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() {}
|