Struct actix_multipart::form::MultipartFormConfig
source · pub struct MultipartFormConfig { /* private fields */ }
Expand description
MultipartForm
extractor configuration.
Add to your app data to have it picked up by MultipartForm
extractors.
Implementations§
source§impl MultipartFormConfig
impl MultipartFormConfig
sourcepub fn total_limit(self, total_limit: usize) -> Self
pub fn total_limit(self, total_limit: usize) -> Self
Sets maximum accepted payload size for the entire form. By default this limit is 50MiB.
sourcepub fn memory_limit(self, memory_limit: usize) -> Self
pub fn memory_limit(self, memory_limit: usize) -> Self
Sets maximum accepted data that will be read into memory. By default this limit is 2MiB.
sourcepub fn error_handler<F>(self, f: F) -> Selfwhere
F: Fn(MultipartError, &HttpRequest) -> Error + Send + Sync + 'static,
pub fn error_handler<F>(self, f: F) -> Selfwhere F: Fn(MultipartError, &HttpRequest) -> Error + Send + Sync + 'static,
Sets custom error handler.
Trait Implementations§
source§impl Clone for MultipartFormConfig
impl Clone for MultipartFormConfig
source§fn clone(&self) -> MultipartFormConfig
fn clone(&self) -> MultipartFormConfig
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