pub trait MultipartForm {
    fn max_size(field: &str) -> Option<usize>;
}
Expand description

This shouldn’t be used or implemented manually. Use actix_multipart_extract_derive::MultipartForm.

Required Methods

Get the max size of a named multipart field. The fields are named after serde renaming.

Implementors