pub trait ImplCookieAccessFilter:
Clone
+ Sized
+ Rc {
// Required method
fn get_raw(&self) -> *mut _cef_cookie_access_filter_t;
// Provided methods
fn can_send_cookie(
&self,
browser: Option<&mut Browser>,
frame: Option<&mut Frame>,
request: Option<&mut Request>,
cookie: Option<&Cookie>,
) -> c_int { ... }
fn can_save_cookie(
&self,
browser: Option<&mut Browser>,
frame: Option<&mut Frame>,
request: Option<&mut Request>,
response: Option<&mut Response>,
cookie: Option<&Cookie>,
) -> c_int { ... }
fn init_methods(object: &mut _cef_cookie_access_filter_t) { ... }
}Required Methods§
fn get_raw(&self) -> *mut _cef_cookie_access_filter_t
Provided Methods§
See _cef_cookie_access_filter_t::can_send_cookie for more documentation.
See _cef_cookie_access_filter_t::can_save_cookie for more documentation.
fn init_methods(object: &mut _cef_cookie_access_filter_t)
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.