#[cfg(feature = "cache")] pub mod cache; use thiserror::Error; #[derive(Error, Debug)] pub enum ServiceError { #[error("data store disconnected")] Cache(#[from] redis::RedisError), #[error("the data for key `{0}` is not available")] Redaction(String), #[error("invalid header (expected {expected:?}, found {found:?})")] InvalidHeader { expected: String, found: String }, #[error("unknown data store error")] Unknown, }