pub struct WithTrace<FN, F> {
pub(super) filter: F,
pub(super) trace: Trace<FN>,
}
Fields§
§filter: F
§trace: Trace<FN>
Trait Implementations§
source§impl<FN, F> FilterBase for WithTrace<FN, F>
impl<FN, F> FilterBase for WithTrace<FN, F>
type Extract = (Traced,)
type Error = <F as FilterBase>::Error
type Future = Instrumented<Inspect<MapOk<<F as FilterBase>::Future, fn(_: <F as FilterBase>::Extract) -> <WithTrace<FN, F> as FilterBase>::Extract>, fn(_: &Result<<WithTrace<FN, F> as FilterBase>::Extract, <F as FilterBase>::Error>)>>
fn filter(&self, _: Internal) -> Self::Future
fn map_err<F, E>(self, _internal: Internal, fun: F) -> MapErr<Self, F>
impl<FN: Copy, F: Copy> Copy for WithTrace<FN, F>
Auto Trait Implementations§
impl<FN, F> Freeze for WithTrace<FN, F>
impl<FN, F> RefUnwindSafe for WithTrace<FN, F>where
F: RefUnwindSafe,
FN: RefUnwindSafe,
impl<FN, F> Send for WithTrace<FN, F>
impl<FN, F> Sync for WithTrace<FN, F>
impl<FN, F> Unpin for WithTrace<FN, F>
impl<FN, F> UnwindSafe for WithTrace<FN, F>where
F: UnwindSafe,
FN: 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