evento-query 0.10.2

A collection of libraries and tools that help you build DDD, CQRS, and event sourcing.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#[derive(thiserror::Error, Debug)]
pub enum QueryError {
    #[error("{0}")]
    MissingField(String),
    #[error("chrono: {0}")]
    ChronoParseError(#[from] chrono::ParseError),
    #[cfg(feature = "pg")]
    #[error("sqlx: {0}")]
    Sqlx(#[from] sqlx::Error),
    #[error("base64: {0}")]
    Base64(#[from] base64::DecodeError),
    #[error("str utf8: {0}")]
    StrUtf8(#[from] std::str::Utf8Error),
    #[error("harsh: {0}")]
    Harsh(#[from] harsh::Error),
    #[error("{0}")]
    Unknown(String, String, String),
}