Enum hyper::header::Preference
[−]
[src]
pub enum Preference { RespondAsync, ReturnRepresentation, ReturnMinimal, HandlingStrict, HandlingLenient, Wait(u32), Extension(String, String, Vec<(String, String)>), }
Prefer contains a list of these preferences.
Variants
RespondAsync
"respond-async"
ReturnRepresentation
"return=representation"
ReturnMinimal
"return=minimal"
HandlingStrict
"handling=strict"
HandlingLenient
"handling=lenient"
Wait(u32)
"wait=delta"
Extension(String, String, Vec<(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 PartialEq for Preference
[src]
fn eq(&self, __arg_0: &Preference) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &Preference) -> bool
[src]
This method tests for !=
.
impl Clone for Preference
[src]
fn clone(&self) -> Preference
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for Preference
[src]
impl Display for Preference
[src]
fn fmt(&self, f: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more