1 2 3 4 5 6 7 8 9 10 11 12 13
//! Main Crate Error #[derive(thiserror::Error, Debug)] pub enum Error { #[error("Generic {0}")] Generic(String), #[error(transparent)] IO(#[from] std::io::Error), #[error(transparent)] REGEX(#[from] regex::Error), }