pub trait SessionRequest {
    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

Implementations on Foreign Types

Implementors