Struct tower_http::follow_redirect::policy::Or
source · pub struct Or<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::or
for more details.
Trait Implementations§
source§impl<Bd, E, A, B> Policy<Bd, E> for Or<A, B>where
A: Policy<Bd, E>,
B: Policy<Bd, E>,
impl<Bd, E, A, B> Policy<Bd, E> for Or<A, B>where A: Policy<Bd, E>, B: Policy<Bd, E>,
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 Or<A, B>
Auto Trait Implementations§
impl<A, B> RefUnwindSafe for Or<A, B>where A: RefUnwindSafe, B: RefUnwindSafe,
impl<A, B> Send for Or<A, B>where A: Send, B: Send,
impl<A, B> Sync for Or<A, B>where A: Sync, B: Sync,
impl<A, B> Unpin for Or<A, B>where A: Unpin, B: Unpin,
impl<A, B> UnwindSafe for Or<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