(mut self, n: usize)
| 109 | } |
| 110 | |
| 111 | pub fn max_log_entries(mut self, n: usize) -> Self { |
| 112 | self.max_log_entries = Some(n); |
| 113 | self |
| 114 | } |
| 115 | |
| 116 | pub fn client_cert_pem(mut self, path: impl Into<PathBuf>) -> Self { |
| 117 | self.client_cert_pem = Some(path.into()); |
no outgoing calls
no test coverage detected