Files
axum/axum-macros/tests/from_request/pass/override_rejection.rs
T

60 lines
1.2 KiB
Rust
Raw Normal View History

use axum::{
body::Body,
extract::{rejection::ExtensionRejection, FromRequest, Request},
2023-03-20 21:02:40 +01:00
http::StatusCode,
response::{IntoResponse, Response},
routing::get,
Extension, Router,
};
fn main() {
let _: Router = Router::new().route("/", get(handler).post(handler_result));
}
async fn handler(_: MyExtractor) {}
async fn handler_result(_: Result<MyExtractor, MyRejection>) {}
#[derive(FromRequest)]
#[from_request(rejection(MyRejection))]
struct MyExtractor {
one: Extension<String>,
#[from_request(via(Extension))]
two: String,
three: OtherExtractor,
}
struct OtherExtractor;
2023-03-12 16:37:32 +01:00
impl<S> FromRequest<S> for OtherExtractor
where
2022-08-17 22:08:24 +02:00
S: Send + Sync,
{
// this rejection doesn't implement `Display` and `Error`
type Rejection = (StatusCode, String);
2023-03-20 21:02:40 +01:00
async fn from_request(_req: Request, _state: &S) -> Result<Self, Self::Rejection> {
todo!()
}
}
struct MyRejection {}
impl From<ExtensionRejection> for MyRejection {
fn from(_: ExtensionRejection) -> Self {
todo!()
}
}
impl From<(StatusCode, String)> for MyRejection {
fn from(_: (StatusCode, String)) -> Self {
todo!()
}
}
impl IntoResponse for MyRejection {
fn into_response(self) -> Response {
todo!()
}
}