logo
Expand description

Pluggable storage backends for session state.

Structs

CookieSessionStorecookie-session

Use the session key, stored in the session cookie, as storage backend for the session state.

RedisActorSessionStoreredis-actor-session

Use Redis as session storage backend.

A fluent builder to construct a RedisActorSessionStore instance with custom configuration parameters.

RedisSessionStoreredis-rs-session

Use Redis as session storage backend.

RedisSessionStoreBuilderredis-rs-session

A fluent builder to construct a RedisSessionStore instance with custom configuration parameters.

A session key, the string stored in a client-side cookie to associate a user with its session state on the backend.

Enums

Possible failures modes for SessionStore::load.

Possible failures modes for SessionStore::save.

Possible failures modes for SessionStore::update.

Traits

The interface to retrieve and save the current session data from/to the chosen storage backend.