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:
parent
024c3ad92c
commit
20624eb379
1 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue