Struct tokio_http2::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
name: String
The field's name from the form
data: MultipartData<'a, B>
The data of the field. Can be text or binary.