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§
Source§impl<T> Json<T>
impl<T> Json<T>
Sourcepub fn into_inner(self) -> T
pub fn into_inner(self) -> T
Deconstruct to an inner value
Trait Implementations§
Source§impl<T> FromRequest for Json<T>where
T: DeserializeOwned + Validate + 'static,
Json extractor. Allow to extract typed information from request’s
payload and validate it.
impl<T> FromRequest for Json<T>where
T: DeserializeOwned + Validate + 'static,
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))
);
}
Auto Trait Implementations§
impl<T> Freeze for Json<T>where
T: Freeze,
impl<T> RefUnwindSafe for Json<T>where
T: RefUnwindSafe,
impl<T> Send for Json<T>where
T: Send,
impl<T> Sync for Json<T>where
T: Sync,
impl<T> Unpin for Json<T>where
T: Unpin,
impl<T> UnwindSafe for Json<T>where
T: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more