pub trait CookieJarExtManual:
IsA<CookieJar>
+ Sealed
+ 'static {
// Provided methods
fn add_cookie(&self, cookie: &mut Cookie) { ... }
fn add_cookie_full(
&self,
cookie: &mut Cookie,
uri: Option<&Uri>,
first_party: Option<&Uri>,
) { ... }
fn add_cookie_with_first_party(
&self,
first_party: &Uri,
cookie: &mut Cookie,
) { ... }
fn delete_cookie(&self, cookie: &mut Cookie) { ... }
}
Provided Methods§
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.