mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-22 15:17:18 +01:00
6703f8634c
Co-authored-by: Jonas Platte <jplatte+git@posteo.de> Co-authored-by: Michael Scofield <mscofield0@tutanota.com>
26 lines
410 B
Rust
26 lines
410 B
Rust
use axum::{
|
|
async_trait,
|
|
extract::{Request, FromRequest},
|
|
};
|
|
use axum_macros::debug_handler;
|
|
|
|
struct A;
|
|
|
|
#[async_trait]
|
|
impl<S> FromRequest<S> for A
|
|
where
|
|
S: Send + Sync,
|
|
{
|
|
type Rejection = ();
|
|
|
|
async fn from_request(_req: Request, _state: &S) -> Result<Self, Self::Rejection> {
|
|
unimplemented!()
|
|
}
|
|
}
|
|
|
|
impl A {
|
|
#[debug_handler]
|
|
async fn handler(&self) {}
|
|
}
|
|
|
|
fn main() {}
|