Struct gotham::middleware::session::MemoryBackend[][src]

pub struct MemoryBackend { /* fields omitted */ }
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

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

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.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more