mirror of
https://github.com/tokio-rs/axum.git
synced 2025-09-26 20:40:29 +00:00
23 lines
369 B
Rust
23 lines
369 B
Rust
use axum::extract::{FromRequest, Request};
|
|
use axum_macros::debug_handler;
|
|
|
|
struct A;
|
|
|
|
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() {}
|