remove async_trait

This commit is contained in:
qwxp
2025-01-02 15:56:32 +03:30
parent 1f2d0419b4
commit 0e924e6baf
3 changed files with 0 additions and 17 deletions

View File

@@ -9,7 +9,6 @@
pub mod test; pub mod test;
use crate::{HasValidate, ValidationRejection}; use crate::{HasValidate, ValidationRejection};
use axum::async_trait;
use axum::extract::{FromRef, FromRequest, FromRequestParts, Request}; use axum::extract::{FromRef, FromRequest, FromRequestParts, Request};
use axum::http::request::Parts; use axum::http::request::Parts;
use garde::{Report, Validate}; use garde::{Report, Validate};
@@ -77,7 +76,6 @@ impl<E> From<Report> for GardeRejection<E> {
} }
} }
#[async_trait]
impl<State, Extractor, Context> FromRequest<State> for Garde<Extractor> impl<State, Extractor, Context> FromRequest<State> for Garde<Extractor>
where where
State: Send + Sync, State: Send + Sync,
@@ -98,7 +96,6 @@ where
} }
} }
#[async_trait]
impl<State, Extractor, Context> FromRequestParts<State> for Garde<Extractor> impl<State, Extractor, Context> FromRequestParts<State> for Garde<Extractor>
where where
State: Send + Sync, State: Send + Sync,

View File

@@ -9,7 +9,6 @@
pub mod test; pub mod test;
use crate::{HasValidate, ValidationRejection}; use crate::{HasValidate, ValidationRejection};
use axum::async_trait;
use axum::extract::{FromRef, FromRequest, FromRequestParts, Request}; use axum::extract::{FromRef, FromRequest, FromRequestParts, Request};
use axum::http::request::Parts; use axum::http::request::Parts;
use std::fmt::Display; use std::fmt::Display;
@@ -144,7 +143,6 @@ pub trait HasValidateArgs<'v> {
fn get_validate_args(&self) -> &Self::ValidateArgs; fn get_validate_args(&self) -> &Self::ValidateArgs;
} }
#[async_trait]
impl<State, Extractor> FromRequest<State> for Valid<Extractor> impl<State, Extractor> FromRequest<State> for Valid<Extractor>
where where
State: Send + Sync, State: Send + Sync,
@@ -162,7 +160,6 @@ where
} }
} }
#[async_trait]
impl<State, Extractor> FromRequestParts<State> for Valid<Extractor> impl<State, Extractor> FromRequestParts<State> for Valid<Extractor>
where where
State: Send + Sync, State: Send + Sync,
@@ -180,7 +177,6 @@ where
} }
} }
#[async_trait]
impl<State, Extractor, Args> FromRequest<State> for ValidEx<Extractor> impl<State, Extractor, Args> FromRequest<State> for ValidEx<Extractor>
where where
State: Send + Sync, State: Send + Sync,
@@ -201,7 +197,6 @@ where
} }
} }
#[async_trait]
impl<State, Extractor, Args> FromRequestParts<State> for ValidEx<Extractor> impl<State, Extractor, Args> FromRequestParts<State> for ValidEx<Extractor>
where where
State: Send + Sync, State: Send + Sync,

View File

@@ -9,7 +9,6 @@
pub mod test; pub mod test;
use crate::{HasValidate, ValidationRejection}; use crate::{HasValidate, ValidationRejection};
use axum::async_trait;
use axum::extract::{FromRequest, FromRequestParts, Request}; use axum::extract::{FromRequest, FromRequestParts, Request};
use axum::http::request::Parts; use axum::http::request::Parts;
use axum::response::{IntoResponse, Response}; use axum::response::{IntoResponse, Response};
@@ -301,7 +300,6 @@ pub trait HasValidify: Sized {
fn from_validify(v: Self::Validify) -> Self; fn from_validify(v: Self::Validify) -> Self;
} }
#[async_trait]
impl<State, Extractor> FromRequest<State> for Validated<Extractor> impl<State, Extractor> FromRequest<State> for Validated<Extractor>
where where
State: Send + Sync, State: Send + Sync,
@@ -319,7 +317,6 @@ where
} }
} }
#[async_trait]
impl<State, Extractor> FromRequestParts<State> for Validated<Extractor> impl<State, Extractor> FromRequestParts<State> for Validated<Extractor>
where where
State: Send + Sync, State: Send + Sync,
@@ -337,7 +334,6 @@ where
} }
} }
#[async_trait]
impl<State, Extractor> FromRequest<State> for Modified<Extractor> impl<State, Extractor> FromRequest<State> for Modified<Extractor>
where where
State: Send + Sync, State: Send + Sync,
@@ -352,7 +348,6 @@ where
} }
} }
#[async_trait]
impl<State, Extractor> FromRequestParts<State> for Modified<Extractor> impl<State, Extractor> FromRequestParts<State> for Modified<Extractor>
where where
State: Send + Sync, State: Send + Sync,
@@ -367,7 +362,6 @@ where
} }
} }
#[async_trait]
impl<State, Extractor> FromRequest<State> for Validified<Extractor> impl<State, Extractor> FromRequest<State> for Validified<Extractor>
where where
State: Send + Sync, State: Send + Sync,
@@ -387,7 +381,6 @@ where
} }
} }
#[async_trait]
impl<State, Extractor> FromRequestParts<State> for Validified<Extractor> impl<State, Extractor> FromRequestParts<State> for Validified<Extractor>
where where
State: Send + Sync, State: Send + Sync,
@@ -407,7 +400,6 @@ where
} }
} }
#[async_trait]
impl<State, Extractor> FromRequest<State> for ValidifiedByRef<Extractor> impl<State, Extractor> FromRequest<State> for ValidifiedByRef<Extractor>
where where
State: Send + Sync, State: Send + Sync,
@@ -426,7 +418,6 @@ where
} }
} }
#[async_trait]
impl<State, Extractor> FromRequestParts<State> for ValidifiedByRef<Extractor> impl<State, Extractor> FromRequestParts<State> for ValidifiedByRef<Extractor>
where where
State: Send + Sync, State: Send + Sync,