[][src]Struct reqwest::RedirectAttempt

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]

pub fn status(&self) -> StatusCode[src]

Get the type of redirect.

pub fn url(&self) -> &Url[src]

Get the next URL to redirect to.

pub fn previous(&self) -> &[Url][src]

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

pub fn follow(self) -> RedirectAction[src]

Returns an action meaning reqwest should follow the next URL.

pub fn stop(self) -> RedirectAction[src]

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

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

pub fn loop_detected(self) -> RedirectAction[src]

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

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

pub fn too_many_redirects(self) -> RedirectAction[src]

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]

Auto Trait Implementations

impl<'a> Send for RedirectAttempt<'a>

impl<'a> Sync for RedirectAttempt<'a>

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

type Err = <U as TryFrom<T>>::Err

impl<T> Erased for T