pub struct Json<T>(pub T);
Expand description

Json 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::Json;
use serde::Deserialize;
use validator::Validate;

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

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

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

Tuple Fields

0: T

Implementations

Deconstruct to an inner value

Trait Implementations

Converts this type into a shared reference of the (usually inferred) input type.

Formats the value using the given formatter. Read more

The resulting type after dereferencing.

Dereferences the value.

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::Json;
use serde::Deserialize;
use validator::Validate;

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

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

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

The associated error which can be returned.

Future that resolves to a Self. Read more

Create a Self from request parts asynchronously.

Create a Self from request head asynchronously. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more