1 2 3 4 5
#[derive(Debug, thiserror::Error)] #[error(transparent)] pub struct CeVIOError(pub anyhow::Error); pub type Result<T> = std::result::Result<T, CeVIOError>;