(
mut self,
tools: impl IntoIterator<Item = impl Into<String>>,
)
| 561 | } |
| 562 | |
| 563 | pub fn with_suggested_tools( |
| 564 | mut self, |
| 565 | tools: impl IntoIterator<Item = impl Into<String>>, |
| 566 | ) -> Self { |
| 567 | self.suggested_tools = tools.into_iter().map(Into::into).collect(); |
| 568 | self |
| 569 | } |
| 570 | |
| 571 | pub fn with_evidence_uris(mut self, uris: impl IntoIterator<Item = impl Into<String>>) -> Self { |
| 572 | self.evidence_uris = uris.into_iter().map(Into::into).collect(); |
no outgoing calls
no test coverage detected