[][src]Struct formdata::FormData

pub struct FormData {
    pub fields: Vec<(String, String)>,
    pub files: Vec<(String, FilePart)>,
}

The extracted text fields and uploaded files from a multipart/form-data request.

Use parse_multipart to devise this object from a request.

Fields

fields: Vec<(String, String)>

Name-value pairs for plain text fields. Technically, these are form data parts with no filename specified in the part's Content-Disposition.

files: Vec<(String, FilePart)>

Name-value pairs for temporary files. Technically, these are form data parts with a filename specified in the part's Content-Disposition.

Implementations

impl FormData[src]

pub fn new() -> FormData[src]

pub fn to_multipart(&self) -> Result<Vec<Node>, Error>[src]

Create a mime-multipart Vec from this FormData

Trait Implementations

impl Clone for FormData[src]

impl Debug for FormData[src]

impl PartialEq<FormData> for FormData[src]

impl StructuralPartialEq for FormData[src]

Auto Trait Implementations

impl !RefUnwindSafe for FormData

impl Send for FormData

impl !Sync for FormData

impl Unpin for FormData

impl !UnwindSafe for FormData

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,