pub trait SessionResponse {
type Url: IntoUrl + Clone;
// Required methods
fn parse_set_cookie(&self) -> Vec<RawCookie<'static>>;
fn final_url(&self) -> Option<&Self::Url>;
}
Expand description
Trait representing responses which may have a Set-Cookie header, appropriate
for use with a Session
Required Associated Types§
Required Methods§
Parse the Set-Cookie header and return the set of cookies if present