1 2 3 4 5 6 7 8 9
/** * Error is an enum wrapping all possible errors. */ #[derive(Debug)] pub enum Error { ReqwestError(reqwest::Error), EnvError(std::env::VarError), DeserializeError(serde_json::Error), }