Struct reqwest::RedirectAttempt [] [src]

pub struct RedirectAttempt<'a> { /* fields omitted */ }

A type that holds information on the next request and previous requests in redirect chain.

Methods

impl<'a> RedirectAttempt<'a>
[src]

Get the next URL to redirect to.

Get the list of previous URLs that have already been requested in this chain.

Returns an action meaning reqwest should follow the next URL.

Returns an action meaning reqwest should not follow the next URL.

The 30x response will be returned as the Ok result.

Returns an action meaning there was a loop of redirects found.

An Error will be returned for the result of the sent request.

Returns an action meaning there was a loop of redirects found.

An Error will be returned for the result of the sent request.

Trait Implementations

impl<'a> Debug for RedirectAttempt<'a>
[src]

Formats the value using the given formatter.