pub struct JsonConfig {
limit: usize,
err_handler: Option<Arc<dyn Fn(JsonPayloadError, &HttpRequest) -> Error + Send + Sync>>,
content_type: Option<Arc<dyn Fn(Mime) -> bool + Send + Sync>>,
content_type_required: bool,
}
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);
Fields§
§limit: usize
§err_handler: Option<Arc<dyn Fn(JsonPayloadError, &HttpRequest) -> Error + Send + Sync>>
§content_type: Option<Arc<dyn Fn(Mime) -> bool + Send + Sync>>
§content_type_required: bool
Implementations§
Source§impl JsonConfig
impl JsonConfig
Sourcepub fn limit(self, limit: usize) -> JsonConfig
pub fn limit(self, limit: usize) -> JsonConfig
Set maximum accepted payload size. By default this limit is 2MB.
Sourcepub fn error_handler<F>(self, f: F) -> JsonConfig
pub fn error_handler<F>(self, f: F) -> JsonConfig
Set custom error handler.
Sourcepub fn content_type<F>(self, predicate: F) -> JsonConfig
pub fn content_type<F>(self, predicate: F) -> JsonConfig
Set predicate for allowed content types.
Sourcepub 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§
Source§impl Clone for JsonConfig
impl Clone for JsonConfig
Source§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 moreSource§impl Default for JsonConfig
impl Default for JsonConfig
Source§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§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more