/// Errors that can occur while interacting with the [`LocalDatabase`]
////// [`LocalDatabase`]: crate::LocalDatabase
#[derive(thiserror::Error, Debug)]pubenumError{/// Errors during I/O operations
#[error(transparent)]
Io(#[from]std::io::Error),/// Errors serializing or deserializing the database
#[error(transparent)]
Serialization(#[from]serde_json::Error),/// Internal mutex was poisoned by a panicking thread
#[error("database mutex poisoned")]
Poisoned,}