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) -> AsyncFilterLayer<U>
pub fn new(predicate: U) -> AsyncFilterLayer<U>
Returns a new layer that produces AsyncFilter services with the given
AsyncPredicate.
Trait Implementations§
Source§impl<U> Debug for AsyncFilterLayer<U>where
U: Debug,
impl<U> Debug for AsyncFilterLayer<U>where
U: Debug,
Source§impl<U, S> Layer<S> for AsyncFilterLayer<U>where
U: Clone,
impl<U, S> Layer<S> for AsyncFilterLayer<U>where
U: Clone,
Source§type Service = AsyncFilter<S, U>
type Service = AsyncFilter<S, U>
The wrapped service
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