[][src]Struct formdata::FilePart

pub struct FilePart {
    pub headers: Headers,
    pub path: PathBuf,
    pub size: Option<usize>,
    // some fields omitted
}

A file that is to be inserted into a multipart/* or alternatively an uploaded file that was received as part of multipart/* parsing.

Fields

headers: Headers

The headers of the part

path: PathBuf

A temporary file containing the file content

size: Option<usize>

Optionally, the size of the file. This is filled when multiparts are parsed, but is not necessary when they are generated.

Methods

impl FilePart[src]

pub fn new(headers: Headers, path: &Path) -> FilePart[src]

pub fn do_not_delete_on_drop(&mut self)[src]

If you do not want the file on disk to be deleted when Self drops, call this function. It will become your responsability to clean up.

pub fn create(headers: Headers) -> Result<FilePart, Error>[src]

Create a new temporary FilePart (when created this way, the file will be deleted once the FilePart object goes out of scope).

pub fn filename(&self) -> Result<Option<String>, Error>[src]

Filename that was specified when the file was uploaded. Returns Ok<None> if there was no content-disposition header supplied.

pub fn content_type(&self) -> Option<Mime<Vec<(Attr, Value)>>>[src]

Mime content-type specified in the header

Trait Implementations

impl PartialEq<FilePart> for FilePart[src]

impl Drop for FilePart[src]

impl Clone for FilePart[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for FilePart[src]

Auto Trait Implementations

impl Send for FilePart

impl !Sync for FilePart

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto 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

fn get_type(&self) -> TypeId

Get the TypeId of this object.