good first issue
Metriche repository
- Star
- (126 stelle)
- Metriche merge PR
- (Metriche PR in attesa)
Descrizione
To work around some lifetime issues, we have this beauty in runner.rs:
pub(crate) enum Config<'a, 'b, 'c, 'd, 'e, 'f, 'g> {
Setup(ConfigSetup<'a>),
RunSystem(ConfigRunSystem<'a, 'b, 'c, 'd, 'e, 'f, 'g>),
}
These lifetimes can probably be reduced and simplified.