1 2 3 4 5 6 7 8 9 10 11 12
/// Summary of gate execution #[derive(Debug, Clone)] pub struct GateSummary { pub total: usize, pub passed: usize, pub failed: usize, pub total_duration: Duration, } #[cfg(test)] #[path = "gates_tests_ml_001.rs"] mod tests_extracted;