Module persist

Source
Expand description

Pluggable persistence.

The persistence is a simple key-value store. The intention is to make it simple to implement other persistence mechanisms than the provided ones, such as against a databases.

Structs§

FilePersist
Simple file persistence.
MemoryPersist
Memory implementation for dev/testing.
PersistKey
Key for a value in the persistence.

Enums§

PersistKind
Kinds of persistence keys.

Traits§

Persist
Trait for a persistence implementation.