Struct tower_http::follow_redirect::policy::And
source · pub struct And<A, B> { /* private fields */ }
Available on crate feature
follow-redirect
only.Expand description
A redirection Policy
that combines the results of two Policy
s.
See PolicyExt::and
for more details.
Trait Implementations§
source§impl<Bd, E, A, B> Policy<Bd, E> for And<A, B>
impl<Bd, E, A, B> Policy<Bd, E> for And<A, B>
source§fn redirect(&mut self, attempt: &Attempt<'_>) -> Result<Action, E>
fn redirect(&mut self, attempt: &Attempt<'_>) -> Result<Action, E>
Invoked when the service received a response with a redirection status code (
3xx
). Read moresource§fn on_request(&mut self, request: &mut Request<Bd>)
fn on_request(&mut self, request: &mut Request<Bd>)
Invoked right before the service makes a request, regardless of whether it is redirected
or not. Read more
impl<A: Copy, B: Copy> Copy for And<A, B>
Auto Trait Implementations§
impl<A, B> RefUnwindSafe for And<A, B>where
A: RefUnwindSafe,
B: RefUnwindSafe,
impl<A, B> Send for And<A, B>
impl<A, B> Sync for And<A, B>
impl<A, B> Unpin for And<A, B>
impl<A, B> UnwindSafe for And<A, B>where
A: UnwindSafe,
B: UnwindSafe,
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