1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
use serde_json::{Map, Value};
use thiserror::Error;
#[derive(Debug, Error)]
pub enum Error {
#[error("cannot convert queries to strings")]
CannotConvertQueryToString(Map<String, Value>),
#[error("cannot convert cql2-json to strings")]
CannotConvertCql2JsonToString(Map<String, Value>),
#[error(transparent)]
SerdeJson(#[from] serde_json::Error),
#[error(transparent)]
SerdeUrlencodedSer(#[from] serde_urlencoded::ser::Error),
#[error(transparent)]
TryFromInt(#[from] std::num::TryFromIntError),
#[error(transparent)]
UrlParse(#[from] url::ParseError),
}