pub struct MemoryBackend { /* private fields */ }
Expand description

Defines the in-process memory based session storage.

This is the default implementation which is used by NewSessionMiddleware::default()

Implementations§

Creates a new MemoryBackend where sessions expire and are removed after the ttl has elapsed.

Alternately, MemoryBackend::default() creates a MemoryBackend with a ttl of one hour.

Examples
NewSessionMiddleware::new(MemoryBackend::new(Duration::from_secs(3600)))

Trait Implementations§

Persists a session, either creating a new session or updating an existing session.
Retrieves a session from the underlying storage. Read more
Drops a session from the underlying storage.
Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Returns the “default value” for a type. Read more
The type of Backend created by the NewBackend.
Create and return a new Backend value.

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.