Trait browser_window::prelude::CookieExt[][src]

pub trait CookieExt {
Show 18 methods fn new(name: &str, value: &str) -> CookieImpl;
fn creation_time(&self) -> SystemTime;
fn expires(&self) -> Option<SystemTime>;
fn domain(&'a self) -> Cow<'a, str>;
fn free(&mut self);
fn is_http_only(&self) -> bool;
fn name(&'a self) -> Cow<'a, str>;
fn path(&'a self) -> Cow<'a, str>;
fn is_secure(&self) -> bool;
fn value(&'a self) -> Cow<'a, str>;
fn make_http_only(&mut self) -> &mut Self;
fn make_secure(&mut self) -> &mut Self;
fn set_creation_time(&mut self, time: &SystemTime) -> &mut Self;
fn set_expires(&mut self, time: &SystemTime) -> &mut Self;
fn set_domain(&mut self, domain: &str) -> &mut Self;
fn set_name(&mut self, name: &str) -> &mut Self;
fn set_path(&mut self, path: &str) -> &mut Self;
fn set_value(&mut self, value: &str) -> &mut Self;
}

Required methods

Implementors