Function redirect_fn
pub fn redirect_fn<F, E>(f: F) -> RedirectFn<F>
Expand description
Create a new redirection Policy
from a closure
F: FnMut(&Attempt<'_>) -> Result<Action, E>
.
redirect
method of the returned Policy
delegates to
the wrapped closure.