Struct multipart::server::MultipartField [] [src]

pub struct MultipartField<'a, B: 'a> {
    pub name: String,
    pub data: MultipartData<'a, B>,
}

A field in a multipart request. May be either text or a binary stream (file).

Fields

The field's name from the form

The data of the field. Can be text or binary.

Trait Implementations

impl<'a, B: Debug + 'a> Debug for MultipartField<'a, B>
[src]

Formats the value using the given formatter.