pub trait CookieJarExt {
    // Provided methods
    fn delete(
        &mut self,
        _url: &str,
        _name: &str,
        _complete_cb: CookieDeleteCallbackFn,
        _cb_data: *mut ()
    ) { ... }
    fn free(&mut self) { ... }
    fn global() -> Option<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 ()
    ) { ... }
}

Provided Methods§

source

fn delete( &mut self, _url: &str, _name: &str, _complete_cb: CookieDeleteCallbackFn, _cb_data: *mut () )

source

fn free(&mut self)

source

fn global() -> Option<CookieJarImpl>

source

fn iterator<'a>( &'a self, _url: &str, _include_http_only: bool ) -> CookieIteratorImpl

source

fn iterator_all<'a>(&'a self) -> CookieIteratorImpl

source

fn store( &mut self, _url: &str, _cookie: &CookieImpl, _success_cb: Option<CookieStorageCallbackFn>, _cb_data: *mut () )

Object Safety§

This trait is not object safe.

Implementors§