Enum reqwest::header::Preference
[−]
[src]
pub enum Preference {
RespondAsync,
ReturnRepresentation,
ReturnMinimal,
HandlingStrict,
HandlingLeniant,
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"
HandlingLeniant"handling=leniant"
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<Preference> for Preference
fn eq(&self, __arg_0: &Preference) -> bool
fn ne(&self, __arg_0: &Preference) -> bool
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