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<StringString>,
}

Fields

Methods

impl Cookie

Trait Implementations

impl Display for Cookie

impl Clone for Cookie

impl Debug for Cookie

Formats the value using the given formatter.

impl FromStr for Cookie

impl PartialEq<Cookie> for Cookie