[][src]Struct tower::filter::AsyncFilter

pub struct AsyncFilter<T, U> { /* fields omitted */ }
This is supported on crate feature filter only.

Conditionally dispatch requests to the inner service based on an asynchronous predicate.

Implementations

impl<T, U> AsyncFilter<T, U>[src]

pub fn new(inner: T, predicate: U) -> Self[src]

Returns a new AsyncFilter service wrapping inner.

pub fn layer(predicate: U) -> FilterLayer<U>[src]

Returns a new Layer that wraps services with an AsyncFilter service with the given AsyncPredicate.

pub async fn check<R>(&mut self, request: R) -> Result<U::Request, BoxError> where
    U: AsyncPredicate<R>, 
[src]

Check a Request value against this filter's predicate.

pub fn get_ref(&self) -> &T[src]

Get a reference to the inner service

pub fn get_mut(&mut self) -> &mut T[src]

Get a mutable reference to the inner service

pub fn into_inner(self) -> T[src]

Consume self, returning the inner service

Trait Implementations

impl<T: Clone, U: Clone> Clone for AsyncFilter<T, U>[src]

impl<T: Debug, U: Debug> Debug for AsyncFilter<T, U>[src]

impl<T, U, Request> Service<Request> for AsyncFilter<T, U> where
    U: AsyncPredicate<Request>,
    T: Service<U::Request> + Clone,
    T::Error: Into<BoxError>, 
[src]

type Response = T::Response

Responses given by the service.

type Error = BoxError

Errors produced by the service.

type Future = AsyncResponseFuture<U, T, Request>

The future response value.

Auto Trait Implementations

impl<T, U> RefUnwindSafe for AsyncFilter<T, U> where
    T: RefUnwindSafe,
    U: RefUnwindSafe
[src]

impl<T, U> Send for AsyncFilter<T, U> where
    T: Send,
    U: Send
[src]

impl<T, U> Sync for AsyncFilter<T, U> where
    T: Sync,
    U: Sync
[src]

impl<T, U> Unpin for AsyncFilter<T, U> where
    T: Unpin,
    U: Unpin
[src]

impl<T, U> UnwindSafe for AsyncFilter<T, U> where
    T: UnwindSafe,
    U: UnwindSafe
[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, Request> ServiceExt<Request> for T where
    T: Service<Request> + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,