1 2 3 4 5 6 7
#[derive(Debug, thiserror::Error)] pub enum IngestError { #[error("io error: {0}")] Io(#[from] std::io::Error), #[error("parse error: {0}")] Parse(String), }