Expand description
Session storage backends
This module provides different storage backends for session persistence:
- MemoryStorage: In-memory storage for testing and temporary sessions
- LocalStorage: Browser localStorage backend for WASM
- FileSystemStorage: Filesystem backend for native applications
- EncryptedStorage: Wrapper for encrypted storage
Structs§
- Encrypted
Storage - Encrypted storage wrapper
- File
System Storage - Filesystem-based storage for native applications
- Memory
Storage - In-memory session storage (not persistent across restarts)
Enums§
- Storage
Backend - Enum-based storage backend for dyn compatibility
Functions§
- create_
default_ storage - Factory function to create the appropriate storage backend