Struct warp::filter::boxed::BoxingFilter
source · struct BoxingFilter<F> {
filter: F,
}
Fields§
§filter: F
Trait Implementations§
source§impl<F> FilterBase for BoxingFilter<F>
impl<F> FilterBase for BoxingFilter<F>
type Extract = <F as FilterBase>::Extract
type Error = <F as FilterBase>::Error
type Future = Pin<Box<dyn Future<Output = Result<<BoxingFilter<F> as FilterBase>::Extract, <BoxingFilter<F> as FilterBase>::Error>> + Send>>
fn filter(&self, _: Internal) -> Self::Future
fn map_err<F, E>(self, _internal: Internal, fun: F) -> MapErr<Self, F>
Auto Trait Implementations§
impl<F> Freeze for BoxingFilter<F>where
F: Freeze,
impl<F> RefUnwindSafe for BoxingFilter<F>where
F: RefUnwindSafe,
impl<F> Send for BoxingFilter<F>where
F: Send,
impl<F> Sync for BoxingFilter<F>where
F: Sync,
impl<F> Unpin for BoxingFilter<F>where
F: Unpin,
impl<F> UnwindSafe for BoxingFilter<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
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