Struct webdriver::response::Cookie [] [src]

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

Fields

Methods

impl Cookie
[src]

Trait Implementations

impl Encodable for Cookie
[src]

Serialize a value using an Encoder.

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 !=.

impl Debug for Cookie
[src]

Formats the value using the given formatter.

impl Clone for Cookie
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Into<Cookie> for Cookie
[src]

Performs the conversion.