[][src]Trait user_agent::SessionResponse

pub trait SessionResponse {
    type Url: IntoUrl + Clone;
    fn parse_set_cookie(&self) -> Vec<RawCookie<'static>>;
fn final_url(&self) -> Option<&Self::Url>; }

Trait representing responses which may have a Set-Cookie header, appropriate for use with a Session

Associated Types

type Url: IntoUrl + Clone

Loading content...

Required methods

Parse the Set-Cookie header and return the set of cookies if present

fn final_url(&self) -> Option<&Self::Url>

Return the final Url for the response. In cases such as redirects, such Url may differ from the Request Url. May return None if unavailable.

Loading content...

Implementations on Foreign Types

impl SessionResponse for Response[src]

type Url = Url

Loading content...

Implementors

Loading content...