Add a result to the collection
(&mut self, result: ToolResult)
| 214 | |
| 215 | /// Add a result to the collection |
| 216 | pub fn add(&mut self, result: ToolResult) { |
| 217 | self.results.push(result); |
| 218 | } |
| 219 | |
| 220 | /// Get all results |
| 221 | pub fn get_all(&self) -> Vec<ToolResult> { |
no outgoing calls