(mut self, uris: impl IntoIterator<Item = impl Into<String>>)
| 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(); |
| 83 | self |
| 84 | } |
| 85 | |
| 86 | pub fn with_residual_risk(mut self, risk: impl Into<String>) -> Self { |
| 87 | self.residual_risk = Some(risk.into()); |
no outgoing calls
no test coverage detected