1 2 3 4 5 6 7 8 9
//! Implements the type `Error`. #[derive(thiserror::Error, Debug)] pub enum Error { #[error(transparent)] Io(#[from] std::io::Error), #[error(transparent)] Json(#[from] serde_json::Error), }