(
metadata: &mut HashMap<String, String, S>,
step: &'static str,
)
| 25 | } |
| 26 | |
| 27 | pub fn mark_progress_active<S: BuildHasher>( |
| 28 | metadata: &mut HashMap<String, String, S>, |
| 29 | step: &'static str, |
| 30 | ) { |
| 31 | metadata.insert(PROGRESS_ACTIVE_STEP_KEY.to_string(), step.to_string()); |
| 32 | } |
| 33 | |
| 34 | pub fn mark_progress_detail<S: BuildHasher>( |
| 35 | metadata: &mut HashMap<String, String, S>, |
no outgoing calls
no test coverage detected