Struct tower::filter::AsyncFilterLayer
source · pub struct AsyncFilterLayer<U> { /* private fields */ }
Expand description
Conditionally dispatch requests to the inner service based on an asynchronous predicate.
This Layer
produces instances of the AsyncFilter
service.
Implementations§
source§impl<U> AsyncFilterLayer<U>
impl<U> AsyncFilterLayer<U>
sourcepub fn new(predicate: U) -> Self
pub fn new(predicate: U) -> Self
Returns a new layer that produces AsyncFilter
services with the given
AsyncPredicate
.
Trait Implementations§
source§impl<U: Debug> Debug for AsyncFilterLayer<U>
impl<U: Debug> Debug for AsyncFilterLayer<U>
Auto Trait Implementations§
impl<U> Freeze for AsyncFilterLayer<U>where
U: Freeze,
impl<U> RefUnwindSafe for AsyncFilterLayer<U>where
U: RefUnwindSafe,
impl<U> Send for AsyncFilterLayer<U>where
U: Send,
impl<U> Sync for AsyncFilterLayer<U>where
U: Sync,
impl<U> Unpin for AsyncFilterLayer<U>where
U: Unpin,
impl<U> UnwindSafe for AsyncFilterLayer<U>where
U: 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