Struct reqwest::redirect::Attempt[][src]

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

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

Implementations

impl<'a> Attempt<'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) -> Action[src]

Returns an action meaning reqwest should follow the next URL.

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

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

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

pub fn error<E: Into<Box<dyn StdError + Send + Sync>>>(self, error: E) -> Action[src]

Returns an action failing the redirect with an error.

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

Trait Implementations

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

Auto Trait Implementations

impl<'a> RefUnwindSafe for Attempt<'a>

impl<'a> Send for Attempt<'a>

impl<'a> Sync for Attempt<'a>

impl<'a> Unpin for Attempt<'a>

impl<'a> UnwindSafe for Attempt<'a>

Blanket Implementations

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

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

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

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

impl<T> Instrument for T[src]

impl<T> Instrument 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<V, T> VZip<V> for T where
    V: MultiLane<T>,