[−][src]Struct actix_web::middleware::identity::CookieIdentityPolicy
Use cookies for request identity storage.
The constructors take a key as an argument. This is the private key for cookie - when this value is changed, all identities are lost. The constructors will panic if the key is less than 32 bytes in length.
Example
use actix_web::middleware::identity::{CookieIdentityPolicy, IdentityService}; use actix_web::App; fn main() { let app = App::new().middleware(IdentityService::new( // <- create identity middleware CookieIdentityPolicy::new(&[0; 32]) // <- construct cookie policy .domain("www.rust-lang.org") .name("actix_auth") .path("/") .secure(true), )); }
Methods
impl CookieIdentityPolicy
[src]
pub fn new(key: &[u8]) -> CookieIdentityPolicy
[src]
Construct new CookieIdentityPolicy
instance.
Panics if key length is less than 32 bytes.
pub fn path<S: Into<String>>(self, value: S) -> CookieIdentityPolicy
[src]
Sets the path
field in the session cookie being built.
pub fn name<S: Into<String>>(self, value: S) -> CookieIdentityPolicy
[src]
Sets the name
field in the session cookie being built.
pub fn domain<S: Into<String>>(self, value: S) -> CookieIdentityPolicy
[src]
Sets the domain
field in the session cookie being built.
pub fn secure(self, value: bool) -> CookieIdentityPolicy
[src]
Sets the secure
field in the session cookie being built.
If the secure
field is set, a cookie will only be transmitted when the
connection is secure - i.e. https
pub fn max_age(self, value: Duration) -> CookieIdentityPolicy
[src]
Sets the max-age
field in the session cookie being built.
pub fn same_site(self, same_site: SameSite) -> Self
[src]
Sets the same_site
field in the session cookie being built.
Trait Implementations
impl<S> IdentityPolicy<S> for CookieIdentityPolicy
[src]
type Identity = CookieIdentity
The associated identity
type Future = FutureResult<CookieIdentity, Error>
The return type of the middleware
fn from_request(&self, req: &HttpRequest<S>) -> Self::Future
[src]
Auto Trait Implementations
impl !Send for CookieIdentityPolicy
impl !Sync for CookieIdentityPolicy
Blanket Implementations
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> From for T
[src]
impl<T, U> TryFrom for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.