Struct reqwest::header::Cookie [] [src]

pub struct Cookie {
    pub name: String,
    pub value: String,
    pub expires: Option<Tm>,
    pub max_age: Option<u64>,
    pub domain: Option<String>,
    pub path: Option<String>,
    pub secure: bool,
    pub httponly: bool,
    pub custom: BTreeMap<String, String>,
}

Fields

Methods

impl Cookie

Trait Implementations

impl PartialEq<Cookie> for Cookie

impl FromStr for Cookie

impl Display for Cookie

Formats the value using the given formatter.

impl Clone for Cookie

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Cookie

Formats the value using the given formatter.