[][src]Enum actix_web::http::header::DispositionParam

pub enum DispositionParam {
    Name(String),
    Filename(String),
    FilenameExt(ExtendedValue),
    Unknown(StringString),
    UnknownExt(StringExtendedValue),
}

Parameter in ContentDisposition.

Examples

use actix_web::http::header::DispositionParam;

let param = DispositionParam::Filename(String::from("sample.txt"));
assert!(param.is_filename());
assert_eq!(param.as_filename().unwrap(), "sample.txt");

Variants

For DispositionType::FormData (i.e. multipart/form-data), the name of an field from the form.

A plain file name.

An extended file name. It must not exist for ContentType::Formdata according to RFC7578 Section 4.2.

An unrecognized regular parameter as defined in RFC5987 as reg-parameter, in RFC6266 as token "=" value. Recipients should ignore unrecognizable parameters.

An unrecognized extended paramater as defined in RFC5987 as ext-parameter, in RFC6266 as ext-token "=" ext-value. The single trailling asterisk is not included. Recipients should ignore unrecognizable parameters.

Methods

impl DispositionParam
[src]

Returns true if the paramater is Name.

Returns true if the paramater is Filename.

Returns true if the paramater is FilenameExt.

Returns true if the paramater is Unknown and the name matches.

Returns true if the paramater is UnknownExt and the name matches.

Returns the name if applicable.

Returns the filename if applicable.

Returns the filename* if applicable.

Returns the value of the unrecognized regular parameter if it is Unknown and the name matches.

Returns the value of the unrecognized extended parameter if it is Unknown and the name matches.

Trait Implementations

impl PartialEq<DispositionParam> for DispositionParam
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Clone for DispositionParam
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Display for DispositionParam
[src]

Formats the value using the given formatter. Read more

impl Debug for DispositionParam
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for DispositionParam

impl Sync for DispositionParam

Blanket Implementations

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

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

impl<T> ToString for T where
    T: Display + ?Sized
[src]

Converts the given value to a String. Read more

impl<T> From for T
[src]

Performs the conversion.

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

Performs the conversion.

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

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

Immutably borrows from an owned value. Read more

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

Mutably borrows from an owned value. Read more

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

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

🔬 This is a nightly-only experimental API. (get_type_id)

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more

impl<T> Erased for T