mirror of
https://github.com/logos-messaging/libchat.git
synced 2026-06-28 20:19:26 +00:00
* feat: storage for conversations * fix: db types conversion * feat: run migrations from sql files * feat: persist identity * fix: revert double ratchet storage refactor * fix: clean * refactor: use result wrapper for ffi * refactor: uniform storage error into chat error * fix: zeroize identity record * fix: zeroize for secret keys in db operations * fix: transactional sql migration * fix: remove destroy_string * feat: db storage for inbox ephermeral keys * chore: remove in memory hashmap for ephemeral keys * feat: persist conversation store * feat: wire with the double ratchet storage * feat: remove conversation store * chore: fix conversation type not used * feat: mock chat store implementation * chore: sqlite module * feat: sqlite crate * chore: sqlite rename * chore: more refactor * extract ratchet store trait * chore: clear error conversion * chore: remove customized db conn * chore: fix clippy * chore: refactor to use generics and enum * chore: further clean for review comments
18 lines
405 B
Rust
18 lines
405 B
Rust
use thiserror::Error;
|
|
|
|
/// Common storage errors.
|
|
#[derive(Debug, Error)]
|
|
pub enum StorageError {
|
|
/// Database error (wraps rusqlite::Error when sqlite feature is enabled).
|
|
#[error("database error: {0}")]
|
|
Database(String),
|
|
|
|
/// Record not found.
|
|
#[error("not found: {0}")]
|
|
NotFound(String),
|
|
|
|
/// Invalid data error.
|
|
#[error("invalid data: {0}")]
|
|
InvalidData(String),
|
|
}
|