pub trait AsyncPredicate<Request> {
    type Future: Future<Output = Result<Self::Request, BoxError>>;
    type Request;

    fn check(&mut self, request: Request) -> Self::Future;
}
Available on crate feature filter only.
Expand description

Checks a request asynchronously.

Required Associated Types

The future returned by check.

The type of requests returned by check.

This request is forwarded to the inner service if the predicate succeeds.

Required Methods

Check whether the given request should be forwarded.

If the future resolves with Ok, the request is forwarded to the inner service.

Implementors