mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 00:55:28 +00:00
8 lines
227 B
Rust
8 lines
227 B
Rust
#[derive(Debug)]
|
|
pub enum Error {
|
|
DatabaseIndex,
|
|
DatabaseRecordCreate(i64, String, sqlite::Error),
|
|
DatabaseRecordDelete(i64, sqlite::Error),
|
|
DatabaseRecordsRead(String),
|
|
MemoryIndex(super::memory::Error),
|
|
}
|