[][src]Enum awc::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.

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

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

Returns true if the paramater is Name.

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

Returns true if the paramater is Filename.

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

Returns true if the paramater is FilenameExt.

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

Returns true if the paramater 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 paramater 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 Display for DispositionParam[src]

impl Debug for DispositionParam[src]

impl Clone for DispositionParam[src]

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

Performs copy-assignment from source. Read more

impl PartialEq<DispositionParam> for DispositionParam[src]

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

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

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Erased for T

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,