mirror of
https://github.com/trailbaseio/trailbase.git
synced 2026-04-28 20:49:41 -05:00
13 lines
316 B
Rust
13 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),
|
|
}
|