Enum iron::headers::Preference [] [src]

pub enum Preference {
    RespondAsync,
    ReturnRepresentation,
    ReturnMinimal,
    HandlingStrict,
    HandlingLeniant,
    Wait(u32),
    Extension(StringStringVec<(String, String)>),
}

Prefer contains a list of these preferences.

Variants

RespondAsync

"respond-async"

ReturnRepresentation

"return=representation"

ReturnMinimal

"return=minimal"

HandlingStrict

"handling=strict"

HandlingLeniant

"handling=leniant"

Wait(u32)

"wait=delta"

Extension(StringStringVec<(String, String)>)

Extension preferences. Always has a value, if none is specified it is just "". A preference can also have a list of parameters.

Trait Implementations

impl Debug for Preference

fn fmt(&self, __arg_0: &mut Formatter) -> Result<()Error>

Formats the value using the given formatter.

impl Clone for Preference

fn clone(&self) -> Preference

Returns a copy of the value. Read more

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

Performs copy-assignment from source. Read more

impl PartialEq<Preference> for Preference

fn eq(&self, __arg_0: &Preference) -> bool

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

fn ne(&self, __arg_0: &Preference) -> bool

This method tests for !=.

impl Display for Preference

fn fmt(&self, f: &mut Formatter) -> Result<()Error>

Formats the value using the given formatter.

impl FromStr for Preference

type Err = Option<u32::Err>

fn from_str(s: &str) -> Result<PreferenceOption<u32::Err>>