Struct tower::filter::AsyncFilterLayer
source · pub struct AsyncFilterLayer<U> { /* private fields */ }
Available on crate feature
filter
only.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 const fn new(predicate: U) -> Self
pub const fn new(predicate: U) -> Self
Returns a new layer that produces AsyncFilter
services with the given
AsyncPredicate
.
Trait Implementations§
source§impl<U: Clone> Clone for AsyncFilterLayer<U>
impl<U: Clone> Clone for AsyncFilterLayer<U>
source§fn clone(&self) -> AsyncFilterLayer<U>
fn clone(&self) -> AsyncFilterLayer<U>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)