(
metadata: &mut HashMap<String, String, S>,
step: &'static str,
label: impl Into<String>,
)
| 16 | pub const PROGRESS_STEP_STARTING_SANDBOX: &str = "starting_sandbox"; |
| 17 | |
| 18 | pub fn mark_progress_complete<S: BuildHasher>( |
| 19 | metadata: &mut HashMap<String, String, S>, |
| 20 | step: &'static str, |
| 21 | label: impl Into<String>, |
| 22 | ) { |
| 23 | metadata.insert(PROGRESS_COMPLETE_STEP_KEY.to_string(), step.to_string()); |
| 24 | metadata.insert(PROGRESS_COMPLETE_LABEL_KEY.to_string(), label.into()); |
| 25 | } |
| 26 | |
| 27 | pub fn mark_progress_active<S: BuildHasher>( |
| 28 | metadata: &mut HashMap<String, String, S>, |
no outgoing calls
no test coverage detected