Trait actix_web::middleware::identity::IdentityPolicy[][src]

pub trait IdentityPolicy<S>: Sized + 'static {
    type Identity: Identity;
    type Future: Future<Item = Self::Identity, Error = Error>;
    fn from_request(&self, request: &HttpRequest<S>) -> Self::Future;
}

Identity policy definition.

Associated Types

The associated identity

The return type of the middleware

Required Methods

Parse the session from request and load data from a service identity.

Implementors