1 2 3 4 5 6 7
#[derive(thiserror::Error, Debug)] pub enum InstantiatorErrorKind<DepsErr, FactoryErr> { #[error(transparent)] Deps(DepsErr), #[error(transparent)] Factory(FactoryErr), }