mirror of
https://github.com/trailbaseio/trailbase
synced 2026-04-30 17:57:22 +00:00
12 lines
316 B
Rust
12 lines
316 B
Rust
#[derive(thiserror::Error, Debug)]
|
|
#[allow(unused)]
|
|
pub enum BenchmarkError {
|
|
#[error("Other error: {0}")]
|
|
Other(Box<dyn std::error::Error + Sync + Send>),
|
|
|
|
#[error("Rusqlite error: {0}")]
|
|
Rusqlite(#[from] rusqlite::Error),
|
|
|
|
#[error("TrailBase error: {0}")]
|
|
TrailBase(#[from] trailbase_sqlite::Error),
|
|
}
|