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

name
value
expires
max_age
domain
path
secure
httponly
custom

Methods

impl Cookie

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

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

fn pair(&self) -> AttrVal

Trait Implementations

impl Display for Cookie

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

impl FromStr for Cookie

type Err = ()

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

Derived Implementations

impl Debug for Cookie

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

impl Clone for Cookie

fn clone(&self) -> Cookie

1.0.0fn clone_from(&mut self, source: &Self)

impl PartialEq<Cookie> for Cookie

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

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