pub trait CookieIteratorExt {
// Provided methods
fn free(&mut self) { ... }
fn next(
&mut self,
_on_next: CookieIteratorNextCallbackFn,
_cb_data: *mut (),
) -> bool { ... }
}Provided Methods§
fn free(&mut self)
fn next( &mut self, _on_next: CookieIteratorNextCallbackFn, _cb_data: *mut (), ) -> bool
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".