Trait browser_window_core::cookie::CookieJarExt[][src]

pub trait CookieJarExt {
    fn delete(
        &mut self,
        url: &str,
        name: &str,
        complete_cb: CookieDeleteCallbackFn,
        cb_data: *mut ()
    );
fn free(&mut self);
fn global() -> CookieJarImpl;
fn iterator<'a>(
        &'a self,
        url: &str,
        include_http_only: bool
    ) -> CookieIteratorImpl;
fn iterator_all<'a>(&'a self) -> CookieIteratorImpl;
fn store(
        &mut self,
        url: &str,
        cookie: &CookieImpl,
        success_cb: Option<CookieStorageCallbackFn>,
        cb_data: *mut ()
    ); }

Required methods

Implementors