Expand description
§tor-persist
Persistent data storage for use with Tor.
This crate is part of Arti, a project to implement Tor in Rust.
For now, users should construct storage objects directly with (for
example) FsStateMgr::from_path_and_mistrust()
, but use them primarily via the
interfaces of the StateMgr
trait.
License: MIT OR Apache-2.0
Modules§
- err 🔒
- Error types for `tor-persist.
- fs 🔒
Non-WebAssembly - Filesystem + JSON implementation of StateMgr.
- fs_
mistrust_ 🔒error_ ext FsMistrustErrorExt
- handle 🔒
- Object-safe, type-safe wrappers for
StateMgr
. - hsnickname
HsNickname
module itself is private, butHsNickname
etc. are re-exported- load_
store 🔒 - Helper module for loading and storing via serde
- slug
- “Slugs” used as part of on-disk filenames and other similar purposes
- state_
dir state-dir
- State helper utility
- testing 🔒
testing
- Testing-only StateMgr that stores values in a hash table.
Structs§
- Error
- An error that occurred while manipulating persistent state.
- FsState
Mgr Non-WebAssembly - Implementation of StateMgr that stores state as JSON files on disk.
- Testing
State Mgr testing
- A state manager for testing support, that allows simulating persistence without having to store anything to disk.
Enums§
- Error
Source - An underlying error manipulating persistent state.
- Futureproof
- A wrapper type for types whose representation may change in future versions of Arti.
- Json
Value - Represents any valid JSON value.
- Lock
Status - A possible outcome from calling
StateMgr::try_lock()
Traits§
- FsMistrust
Error Ext - Extension trait for getting a [
tor_error::ErrorKind
] from a [fs_mistrust::Error
] - State
Mgr - An object that can manage persistent state.
- Storage
Handle - A handle to a storage system that stores objects of a single type to a single location.
Type Aliases§
- DynStorage
Handle - Type wrapper for a reference-counted
dyn
StorageHandle
. - Result 🔒
- Wrapper type for Results returned from this crate.