1 2 3 4 5 6 7
#[derive(Debug, thiserror::Error)] pub enum Error { #[error("URL parse error {0}")] UrlParseError(#[from] url::ParseError), #[error("Missing Test URL")] MissingTestUrl, }