Struct cookie::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

name: String value: String expires: Option<Tm> max_age: Option<u64> domain: Option<String> path: Option<String> secure: bool httponly: bool custom: BTreeMap<StringString>

Methods

impl Cookie
[src]

fn new(name: String, value: String) -> Cookie

fn parse(s: &str) -> Result<Cookie()>

fn pair(&self) -> AttrVal

Trait Implementations

impl Debug for Cookie
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Clone for Cookie
[src]

fn clone(&self) -> Cookie

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

impl PartialEq for Cookie
[src]

fn eq(&self, __arg_0: &Cookie) -> bool

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

fn ne(&self, __arg_0: &Cookie) -> bool

This method tests for !=.

impl Display for Cookie
[src]

fn fmt(&self, f: &mut Formatter) -> Result

Formats the value using the given formatter.

impl FromStr for Cookie
[src]

type Err = ()

The associated error which can be returned from parsing.

fn from_str(s: &str) -> Result<Cookie()>

Parses a string s to return a value of this type. Read more