mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-29 11:42:47 +01:00
4e4c29175f
Co-authored-by: Jonas Platte <jplatte+git@posteo.de> Co-authored-by: Michael Scofield <mscofield0@tutanota.com>
27 lines
509 B
Rust
27 lines
509 B
Rust
use axum_macros::debug_handler;
|
|
use axum::extract::{FromRef, FromRequest};
|
|
use axum::async_trait;
|
|
use axum::http::Request;
|
|
|
|
#[debug_handler(state = AppState)]
|
|
async fn handler(_: A) {}
|
|
|
|
#[derive(Clone)]
|
|
struct AppState;
|
|
|
|
struct A;
|
|
|
|
#[async_trait]
|
|
impl<S> FromRequest<S> for A
|
|
where
|
|
S: Send + Sync,
|
|
AppState: FromRef<S>,
|
|
{
|
|
type Rejection = ();
|
|
|
|
async fn from_request(_req: Request<axum::body::Body>, _state: &S) -> Result<Self, Self::Rejection> {
|
|
unimplemented!()
|
|
}
|
|
}
|
|
|
|
fn main() {}
|