1 2 3 4 5 6 7 8 9 10
use thiserror::Error; #[derive(Error, Debug)] pub enum Error { #[error("http client error: {0}")] Reqwest(#[from] reqwest::Error), #[error("internal error occurred: {0}")] Internal(String) }