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]
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
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> Instrument for T
[src]
impl<T> Instrument for T
[src]