[][src]Module gotham::middleware::session

Defines a session middleware with a pluggable backend.

Structs

MemoryBackend

Defines the in-process memory based session storage.

NewSessionMiddleware

Added to a Pipeline, this spawns the per-request SessionMiddleware

SessionData

The wrapping type for application session data.

SessionIdentifier

Represents the session identifier which is held in the user agent's session cookie.

SessionMiddleware

The per-request value which provides session storage for other middleware and handlers.

Enums

SessionError

The kind of failure which occurred trying to perform a session operation.

Traits

Backend

A Backend receives session data and stores it, and recalls the session data subsequently.

NewBackend

A type which is used to spawn new Backend values.