[][src]Struct actix_web_validator::query::ValidatedQuery

pub struct ValidatedQuery<T>(pub T);

Replaces actix_web Query struct to get T struct validated with Validator crate

Methods

impl<T> ValidatedQuery<T> where
    T: Validate
[src]

pub fn into_inner(self) -> T[src]

Deconstruct to a inner value

Trait Implementations

impl<T> AsRef<T> for ValidatedQuery<T>[src]

impl<T: Eq> Eq for ValidatedQuery<T>[src]

impl<T> FromRequest for ValidatedQuery<T> where
    T: DeserializeOwned + Validate + Debug
[src]

type Error = Error

The associated error which can be returned.

type Future = Result<Self, Error>

Future that resolves to a Self

type Config = QueryConfig

Configuration for this extractor

fn from_request(req: &HttpRequest, _: &mut Payload) -> Self::Future[src]

Builds Query struct from request and provides validation mechanism

impl<T: Ord> Ord for ValidatedQuery<T>[src]

impl<T: PartialEq> PartialEq<ValidatedQuery<T>> for ValidatedQuery<T>[src]

impl<T: PartialOrd> PartialOrd<ValidatedQuery<T>> for ValidatedQuery<T>[src]

impl<T> StructuralEq for ValidatedQuery<T>[src]

impl<T> StructuralPartialEq for ValidatedQuery<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for ValidatedQuery<T> where
    T: RefUnwindSafe

impl<T> Send for ValidatedQuery<T> where
    T: Send

impl<T> Sync for ValidatedQuery<T> where
    T: Sync

impl<T> Unpin for ValidatedQuery<T> where
    T: Unpin

impl<T> UnwindSafe for ValidatedQuery<T> where
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,