[−][src]Struct reqwest::redirect::Attempt
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
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]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,