pub struct Recover<T, F> {
pub(super) filter: T,
pub(super) callback: F,
}
Fields§
§filter: T
§callback: F
Trait Implementations§
source§impl<T, F> FilterBase for Recover<T, F>
impl<T, F> FilterBase for Recover<T, F>
type Extract = (Either<<T as FilterBase>::Extract, (<<F as Func<<T as FilterBase>::Error>>::Output as TryFuture>::Ok,)>,)
type Error = <<F as Func<<T as FilterBase>::Error>>::Output as TryFuture>::Error
type Future = RecoverFuture<T, F>
fn filter(&self, _: Internal) -> Self::Future
fn map_err<F, E>(self, _internal: Internal, fun: F) -> MapErr<Self, F>
impl<T: Copy, F: Copy> Copy for Recover<T, F>
Auto Trait Implementations§
impl<T, F> Freeze for Recover<T, F>
impl<T, F> RefUnwindSafe for Recover<T, F>where
T: RefUnwindSafe,
F: RefUnwindSafe,
impl<T, F> Send for Recover<T, F>
impl<T, F> Sync for Recover<T, F>
impl<T, F> Unpin for Recover<T, F>
impl<T, F> UnwindSafe for Recover<T, F>where
T: UnwindSafe,
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
source§impl<T> Filter for Twhere
T: FilterBase,
impl<T> Filter for Twhere
T: FilterBase,
source§fn and<F>(self, other: F) -> And<Self, F>
fn and<F>(self, other: F) -> And<Self, F>
Composes a new
Filter
that requires both this and the other to filter a request. Read moresource§fn or<F>(self, other: F) -> Or<Self, F>
fn or<F>(self, other: F) -> Or<Self, F>
Composes a new
Filter
of either this or the other filter. Read moresource§fn map<F>(self, fun: F) -> Map<Self, F>
fn map<F>(self, fun: F) -> Map<Self, F>
Composes this
Filter
with a function receiving the extracted value. Read moresource§fn then<F>(self, fun: F) -> Then<Self, F>
fn then<F>(self, fun: F) -> Then<Self, F>
Composes this
Filter
with an async function receiving
the extracted value. Read moresource§fn and_then<F>(self, fun: F) -> AndThen<Self, F>
fn and_then<F>(self, fun: F) -> AndThen<Self, F>
Composes this
Filter
with a fallible async function receiving
the extracted value. Read moresource§fn or_else<F>(self, fun: F) -> OrElse<Self, F>
fn or_else<F>(self, fun: F) -> OrElse<Self, F>
Compose this
Filter
with a function receiving an error. Read moresource§fn recover<F>(self, fun: F) -> Recover<Self, F>
fn recover<F>(self, fun: F) -> Recover<Self, F>
Compose this
Filter
with a function receiving an error and
returning a new type, instead of the same type. Read moresource§fn untuple_one<T>(self) -> UntupleOne<Self>
fn untuple_one<T>(self) -> UntupleOne<Self>
Convenience method to remove one layer of tupling. Read more