Trait browser_window::prelude::CookieJarExt
source · 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§
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 () )
Object Safety§
This trait is not object safe.