pub trait MultipartTypeSpecial where
    Self: Sized
{ fn get(form: &mut Multiparts, field_name: &str) -> Result<Self, GetError>; }
Expand description

A work-around while Rust trait specialization is not yet available

Required methods

Attempt to retrieve a named field/part from the Multipart form

Where the type is either a Vec<T> or Option<T> where T implements FromStr

Implementations on Foreign Types

Implementors