(
mut self,
tools: impl IntoIterator<Item = impl Into<String>>,
)
| 71 | } |
| 72 | |
| 73 | pub fn with_suggested_tools( |
| 74 | mut self, |
| 75 | tools: impl IntoIterator<Item = impl Into<String>>, |
| 76 | ) -> Self { |
| 77 | self.suggested_tools = tools.into_iter().map(Into::into).collect(); |
| 78 | self |
| 79 | } |
| 80 | |
| 81 | pub fn with_evidence_uris(mut self, uris: impl IntoIterator<Item = impl Into<String>>) -> Self { |
| 82 | self.evidence_uris = uris.into_iter().map(Into::into).collect(); |
no outgoing calls
no test coverage detected