Expand description
Pluggable storage backends for session state.
Structs§
- Cookie
Session Store cookie-session - Use the session key, stored in the session cookie, as storage backend for the session state.
- Redis
Session Store redis-session - Use Redis as session storage backend.
- Redis
Session Store Builder redis-session - A fluent builder to construct a
RedisSessionStoreinstance with custom configuration parameters. - Session
Key - A session key, the string stored in a client-side cookie to associate a user with its session state on the backend.
Enums§
- Load
Error - Possible failures modes for
SessionStore::load. - Save
Error - Possible failures modes for
SessionStore::save. - Update
Error - Possible failures modes for
SessionStore::update.
Traits§
- Session
Store - The interface to retrieve and save the current session data from/to the chosen storage backend.
Functions§
- generate_
session_ key - Session key generation routine that follows OWASP recommendations.