Struct webdriver::common::Cookie[][src]

pub struct Cookie {
    pub name: String,
    pub value: String,
    pub path: Option<String>,
    pub domain: Option<String>,
    pub secure: bool,
    pub httpOnly: bool,
    pub expiry: Option<Date>,
}

Fields

Trait Implementations

impl Clone for Cookie
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Cookie
[src]

Formats the value using the given formatter. Read more

impl PartialEq for Cookie
[src]

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

This method tests for !=.

Auto Trait Implementations

impl Send for Cookie

impl Sync for Cookie