[][src]Struct async_session::CookieStore

pub struct CookieStore;

A session store that serializes the entire session into a Cookie.

This is not recommended for most production deployments.

This implementation uses bincode to serialize the Session to decrease the size of the cookie. Note: There is a maximum of 4093 cookie bytes allowed per domain, so the cookie store is limited in capacity.

Note: Currently, the data in the cookie is only signed, but not encrypted. If the contained session data is sensitive and should not be read by a user, the cookie store is not an appropriate choice.

Expiry: SessionStore::destroy_session and SessionStore::clear_store are not meaningful for the CookieStore, and noop. Destroying a session must be done at the cookie setting level, which is outside of the scope of this crate.

Implementations

impl CookieStore[src]

pub fn new() -> Self[src]

constructs a new CookieStore

Trait Implementations

impl Clone for CookieStore[src]

impl Copy for CookieStore[src]

impl Debug for CookieStore[src]

impl SessionStore for CookieStore[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,