1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2025-04-04 00:59:36 +00:00

Update guard.rs

This commit is contained in:
Koen Hoeijmakers 2019-10-04 09:29:53 +02:00 committed by GitHub
parent 024c3ad92c
commit 20624eb379
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -31,9 +31,9 @@ use actix_http::RequestHead;
/// Trait defines resource guards. Guards are used for route selection.
///
//! Guards can not modify the request object. But it is possible
//! to store extra attributes on a request by using the `Extensions` container.
//! Extensions containers are available via the `RequestHead::extensions()` method.
/// Guards can not modify the request object. But it is possible
/// to store extra attributes on a request by using the `Extensions` container.
/// Extensions containers are available via the `RequestHead::extensions()` method.
pub trait Guard {
/// Check if request matches predicate
fn check(&self, request: &RequestHead) -> bool;