(
metadata: &mut HashMap<String, String, S>,
detail: impl Into<String>,
)
| 32 | } |
| 33 | |
| 34 | pub fn mark_progress_detail<S: BuildHasher>( |
| 35 | metadata: &mut HashMap<String, String, S>, |
| 36 | detail: impl Into<String>, |
| 37 | ) { |
| 38 | metadata.insert(PROGRESS_ACTIVE_DETAIL_KEY.to_string(), detail.into()); |
| 39 | } |
| 40 | |
| 41 | /// Format a byte count as a human-readable string (B / KB / MB / GB). |
| 42 | /// |
no outgoing calls
no test coverage detected