Struct JsonConfig
pub struct JsonConfig { /* private fields */ }
Expand description
Json
extractor configuration.
§Examples
use actix_web::{error, post, web, App, FromRequest, HttpResponse};
use serde::Deserialize;
#[derive(Deserialize)]
struct Info {
name: String,
}
// `Json` extraction is bound by custom `JsonConfig` applied to App.
#[post("/")]
async fn index(info: web::Json<Info>) -> String {
format!("Welcome {}!", info.name)
}
// custom `Json` extractor configuration
let json_cfg = web::JsonConfig::default()
// limit request payload size
.limit(4096)
// only accept text/plain content type
.content_type(|mime| mime == mime::TEXT_PLAIN)
// use custom error handler
.error_handler(|err, req| {
error::InternalError::from_response(err, HttpResponse::Conflict().into()).into()
});
App::new()
.app_data(json_cfg)
.service(index);
Implementations§
§impl JsonConfig
impl JsonConfig
pub fn limit(self, limit: usize) -> JsonConfig
pub fn limit(self, limit: usize) -> JsonConfig
Set maximum accepted payload size. By default this limit is 2MB.
pub fn error_handler<F>(self, f: F) -> JsonConfig
pub fn error_handler<F>(self, f: F) -> JsonConfig
Set custom error handler.
pub fn content_type<F>(self, predicate: F) -> JsonConfig
pub fn content_type<F>(self, predicate: F) -> JsonConfig
Set predicate for allowed content types.
pub fn content_type_required(self, content_type_required: bool) -> JsonConfig
pub fn content_type_required(self, content_type_required: bool) -> JsonConfig
Sets whether or not the request must have a Content-Type
header to be parsed.
Trait Implementations§
§impl Clone for JsonConfig
impl Clone for JsonConfig
§fn clone(&self) -> JsonConfig
fn clone(&self) -> JsonConfig
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl Default for JsonConfig
impl Default for JsonConfig
§fn default() -> JsonConfig
fn default() -> JsonConfig
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for JsonConfig
impl !RefUnwindSafe for JsonConfig
impl Send for JsonConfig
impl Sync for JsonConfig
impl Unpin for JsonConfig
impl !UnwindSafe for JsonConfig
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)