1 2 3 4 5 6 7
use std::sync::Arc; #[derive(Debug, thiserror::Error)] pub enum Error { #[error("Could not parse {0}")] ParseError(Arc<str>), }