Trait actix_web::middleware::identity::IdentityPolicy [−][src]
Identity policy definition.
Associated Types
type Identity: Identity
[−]
The associated identity
type Future: Future<Item = Self::Identity, Error = Error>
[−]
The return type of the middleware
Required Methods
fn from_request(&self, request: &HttpRequest<S>) -> Self::Future
[−]
Parse the session from request and load data from a service identity.
Implementors
impl<S> IdentityPolicy<S> for CookieIdentityPolicy type Identity = CookieIdentity; type Future = FutureResult<CookieIdentity, Error>;
impl<S> IdentityPolicy<S> for SqlIdentityPolicy