1 2 3 4 5 6 7 8 9
#[derive(Debug, thiserror::Error)] pub enum QueryError { #[error("parse error: {0}")] Parse(String), #[error("graph error: {0}")] Graph(#[from] marsdb_graph::GraphError), #[error("unbound variable: {0}")] UnboundVariable(String), }