pub trait AsyncPredicate<Request> {
type Future: Future<Output = Result<Self::Request, BoxError>>;
type Request;
// Required method
fn check(&mut self, request: Request) -> Self::Future;
}Available on crate feature
filter only.Expand description
Checks a request asynchronously.