[][src]Trait user_agent::SessionResponse

pub trait SessionResponse {
    fn parse_set_cookie(&self) -> Vec<RawCookie<'static>>;
fn final_url(&self) -> Option<&Url>; }

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

Required methods

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

fn final_url(&self) -> Option<&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]

Loading content...

Implementors

Loading content...