Enum actix_web_multipart_file::FormData[][src]

pub enum FormData {
    Data {
        name: String,
        value: Bytes,
    },
    File {
        name: String,
        filename: String,
        file: File,
    },
}

Variants

form data that don't have filename

Fields of Data

name field

body

form data thathave filename

Fields of File

name field

filename field

a temporary file that contains the body

Trait Implementations

impl Debug for FormData
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for FormData

impl Sync for FormData