pub struct Attempt<'a> { /* private fields */ }
Expand description
A type that holds information on the next request and previous requests in redirect chain.
Implementations§
source§impl<'a> Attempt<'a>
impl<'a> Attempt<'a>
sourcepub fn status(&self) -> StatusCode
pub fn status(&self) -> StatusCode
Get the type of redirect.
sourcepub fn previous(&self) -> &[Url]
pub fn previous(&self) -> &[Url]
Get the list of previous URLs that have already been requested in this chain.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Attempt<'a>
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§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more