()
| 214 | if let Ok(v) = value.to_str() { |
| 215 | response_headers |
| 216 | .entry(key.to_string()) |
| 217 | .and_modify(|existing: &mut String| { |
| 218 | existing.push_str(", "); |
| 219 | existing.push_str(v); |
| 220 | }) |
| 221 | .or_insert_with(|| v.to_string()); |
nothing calls this directly
no outgoing calls
no test coverage detected