[][src]Struct actix_web_validator::ValidatedJson

pub struct ValidatedJson<T>(pub T);

ValidatedJson can be used for exstracting typed information and validation from request's payload.

To extract and typed information from request's body, the type T must implement the Deserialize trait from serde and Validate trait from validator crate.

JsonConfig allows to configure extraction process.

Example

use actix_web::{web, App};
use actix_web_validator::ValidatedJson;
use serde_derive::Deserialize;
use validator::Validate;
use validator_derive::Validate;

#[derive(Deserialize, Validate)]
struct Info {
    #[validate(length(min = 3))]
    username: String,
}

/// deserialize `Info` from request's body
async fn index(info: ValidatedJson<Info>) -> String {
    format!("Welcome {}!", info.username)
}

fn main() {
    let app = App::new().service(
       web::resource("/index.html").route(
           web::post().to(index))
    );
}

Implementations

impl<T> ValidatedJson<T>[src]

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

Deconstruct to an inner value

Trait Implementations

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

impl<T: Debug> Debug for ValidatedJson<T>[src]

impl<T> Deref for ValidatedJson<T>[src]

type Target = T

The resulting type after dereferencing.

impl<T> FromRequest for ValidatedJson<T> where
    T: DeserializeOwned + Validate + 'static, 
[src]

Json extractor. Allow to extract typed information from request's payload and validate it.

To extract typed information from request's body, the type T must implement the Deserialize trait from serde.

To validate payload, the type T must implement the Validate trait from validator crate.

JsonConfig allows to configure extraction process.

Example

use actix_web::{web, App};
use actix_web_validator::ValidatedJson;
use serde_derive::Deserialize;
use validator::Validate;
use validator_derive::Validate;

#[derive(Deserialize, Validate)]
struct Info {
    #[validate(length(min = 3))]
    username: String,
}

/// deserialize `Info` from request's body
async fn index(info: ValidatedJson<Info>) -> String {
    format!("Welcome {}!", info.username)
}

fn main() {
    let app = App::new().service(
       web::resource("/index.html").route(
           web::post().to(index))
    );
}

type Error = Error

The associated error which can be returned.

type Future = LocalBoxFuture<'static, Result<Self, Self::Error>>

Future that resolves to a Self

type Config = JsonConfig

Configuration for this extractor

Auto Trait Implementations

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

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

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

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

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

Blanket Implementations

impl<T, A, P> Access<T> for P where
    A: Access<T>,
    P: Deref<Target = A>, 
[src]

type Guard = <A as Access<T>>::Guard

A guard object containing the value and keeping it alive. Read more

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<T, A> DynAccess<T> for A where
    A: Access<T>,
    <A as Access<T>>::Guard: 'static, 
[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>,