Struct viz::prelude::types::MultipartLimits[]

pub struct MultipartLimits {
    pub field_name_size: Option<usize>,
    pub field_size: Option<usize>,
    pub fields: Option<usize>,
    pub file_size: Option<usize>,
    pub files: Option<usize>,
    pub parts: Option<usize>,
    pub stream_size: Option<u64>,
    pub buffer_size: usize,
}
Expand description

Various limits on incoming data

Fields

field_name_size: Option<usize>

Max field name size

field_size: Option<usize>

Max field value size

fields: Option<usize>

Max number of non-file fields

file_size: Option<usize>

Max file size

files: Option<usize>

Max number of file fields

parts: Option<usize>

Max number of parts (fields + files)

stream_size: Option<u64>

Max number of whole stream

buffer_size: usize

Max number of buffer size

Implementations

Max number of field name size, defaults to 100.

Max number of field value size, defaults to 100KB.

Max number of file size, defaults to 10MB.

Max number of stream size, defaults to 200MB.

Max number of buffer size, defaults to 8KB

Max field name size

Max field value size

Max number of non-file fields

Max file size

Max number of file fields

Max number of parts (fields + files)

Max number of buffer size

Max number of whole stream size

Check parts

Check fields

Check files

Check stream size

Check file size

Check field size

Check field name size

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more