Struct tower_http::follow_redirect::policy::CloneBodyFn
source · pub struct CloneBodyFn<F> { /* private fields */ }
Available on crate feature
follow-redirect
only.Expand description
A redirection Policy
created from a closure.
See clone_body_fn
for more details.
Trait Implementations§
source§impl<F: Clone> Clone for CloneBodyFn<F>
impl<F: Clone> Clone for CloneBodyFn<F>
source§fn clone(&self) -> CloneBodyFn<F>
fn clone(&self) -> CloneBodyFn<F>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<F> Debug for CloneBodyFn<F>
impl<F> Debug for CloneBodyFn<F>
source§impl<F, B, E> Policy<B, E> for CloneBodyFn<F>
impl<F, B, E> Policy<B, E> for CloneBodyFn<F>
source§fn redirect(&mut self, _: &Attempt<'_>) -> Result<Action, E>
fn redirect(&mut self, _: &Attempt<'_>) -> Result<Action, E>
Invoked when the service received a response with a redirection status code (
3xx
). Read moresource§fn clone_body(&self, body: &B) -> Option<B>
fn clone_body(&self, body: &B) -> Option<B>
Try to clone a request body before the service makes a redirected request. Read more
source§fn on_request(&mut self, _request: &mut Request<B>)
fn on_request(&mut self, _request: &mut Request<B>)
Invoked right before the service makes a request, regardless of whether it is redirected
or not. Read more
impl<F: Copy> Copy for CloneBodyFn<F>
Auto Trait Implementations§
impl<F> RefUnwindSafe for CloneBodyFn<F>where
F: RefUnwindSafe,
impl<F> Send for CloneBodyFn<F>where
F: Send,
impl<F> Sync for CloneBodyFn<F>where
F: Sync,
impl<F> Unpin for CloneBodyFn<F>where
F: Unpin,
impl<F> UnwindSafe for CloneBodyFn<F>where
F: 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