Function
append_agent_rows
(
rows: &mut Vec<AllRow>,
detected_agents: &mut Vec<&'static str>,
agent: &'static str,
agent_rows: AgentRows,
)
Source from the content-addressed store, hash-verified
| 331 | } |
| 332 | |
| 333 | fn append_agent_rows( |
| 334 | rows: &mut Vec<AllRow>, |
| 335 | detected_agents: &mut Vec<&'static str>, |
| 336 | agent: &'static str, |
| 337 | agent_rows: AgentRows, |
| 338 | ) { |
| 339 | if agent_rows.detected { |
| 340 | detected_agents.push(agent); |
| 341 | } |
| 342 | rows.extend(agent_rows.rows); |
| 343 | } |
| 344 | |
| 345 | fn load_summary_agent_rows( |
| 346 | agent: &'static str, |
Tested by
no test coverage detected