pub trait Next {
// Required method
fn next(&self, res: &HttpResponse) -> bool;
}Expand description
Response equivalent of actix_web::guard::Guard.
Blocks responses that contain matching criteria
and allows the request to be forwarded to the next
Link in the Chain.