[][src]Struct salvo::http::form::FilePart

pub struct FilePart {
    pub headers: FieldHeaders,
    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: FieldHeaders

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.

Implementations

impl 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 async fn create(
    field: &'_ mut Field<'_, Body>
) -> Result<FilePart, ReadError>
[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) -> Option<&str>[src]

pub fn content_type(&self) -> Option<&Mime>[src]

Mime content-type specified in the header

Trait Implementations

impl Debug for FilePart[src]

impl Drop for FilePart[src]

Auto Trait Implementations

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> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized

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<V, T> VZip<V> for T where
    V: MultiLane<T>,