[][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_http::http::header::DispositionParam;

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

Variants

Name(String)

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

Filename(String)

A plain file name.

It is not supposed to contain any non-ASCII characters when used in a Content-Disposition HTTP response header, where FilenameExt with charset UTF-8 may be used instead in case there are Unicode characters in file names.

FilenameExt(ExtendedValue)

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

Unknown(StringString)

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

UnknownExt(StringExtendedValue)

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

Implementations

impl DispositionParam[src]

pub fn is_name(&self) -> bool[src]

Returns true if the parameter is Name.

pub fn is_filename(&self) -> bool[src]

Returns true if the parameter is Filename.

pub fn is_filename_ext(&self) -> bool[src]

Returns true if the parameter is FilenameExt.

pub fn is_unknown<T>(&self, name: T) -> bool where
    T: AsRef<str>, 
[src]

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

pub fn is_unknown_ext<T>(&self, name: T) -> bool where
    T: AsRef<str>, 
[src]

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

pub fn as_name(&self) -> Option<&str>[src]

Returns the name if applicable.

pub fn as_filename(&self) -> Option<&str>[src]

Returns the filename if applicable.

pub fn as_filename_ext(&self) -> Option<&ExtendedValue>[src]

Returns the filename* if applicable.

pub fn as_unknown<T>(&self, name: T) -> Option<&str> where
    T: AsRef<str>, 
[src]

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

pub fn as_unknown_ext<T>(&self, name: T) -> Option<&ExtendedValue> where
    T: AsRef<str>, 
[src]

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

Trait Implementations

impl Clone for DispositionParam[src]

impl Debug for DispositionParam[src]

impl Display for DispositionParam[src]

impl PartialEq<DispositionParam> for DispositionParam[src]

impl StructuralPartialEq for DispositionParam[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> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

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>,