pub trait SessionRequest {
// Required method
fn add_cookies(self, _: Vec<&RawCookie<'static>>) -> Self;
}
Expand description
Trait representing requests which can carry a Cookie header, appropriate
for use with a Session
Required Methods§
Add the given set of cookies to the request
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.