[][src]Struct tide::sessions::MemoryStore

pub struct MemoryStore { /* fields omitted */ }

in-memory session store

Because there is no external persistance, this session store is ephemeral and will be cleared on server restart.

DO NOT USE THIS IN A PRODUCTION DEPLOYMENT.

Implementations

impl MemoryStore[src]

pub fn new() -> MemoryStore[src]

Create a new instance of MemoryStore

pub async fn cleanup(&'_ self) -> Result<(), Error>[src]

Performs session cleanup. This should be run on an intermittent basis if this store is run for long enough that memory accumulation is a concern

pub async fn count(&'_ self) -> usize[src]

returns the number of elements in the memory store

Example

let mut store = MemoryStore::new();
assert_eq!(store.count().await, 0);
store.store_session(Session::new()).await?;
assert_eq!(store.count().await, 1);

Trait Implementations

impl Clone for MemoryStore[src]

impl Debug for MemoryStore[src]

impl SessionStore for MemoryStore[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> Sealed<T> for T where
    T: ?Sized

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>,