logo

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

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

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)

Tuple Fields

0: String

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

Filename(String)

Tuple Fields

0: 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)

Tuple Fields

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

Unknown(StringString)

Tuple Fields

0: String
1: String

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

UnknownExt(StringExtendedValue)

Tuple Fields

0: String

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

Returns true if the parameter is Name.

Returns true if the parameter is Filename.

Returns true if the parameter is FilenameExt.

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

Returns true if the parameter 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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Formats the value using the given formatter. Read more

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

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

Should always be Self

The resulting type after obtaining ownership.

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

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

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

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more