(&self, name: &str)
| 69 | /// Set the gateway name for cert directory resolution. |
| 70 | #[must_use] |
| 71 | pub fn with_gateway_name(&self, name: &str) -> Self { |
| 72 | Self { |
| 73 | gateway_name: Some(name.to_string()), |
| 74 | ..self.clone() |
| 75 | } |
| 76 | } |
| 77 | |
| 78 | #[must_use] |
| 79 | pub fn with_default_paths(&self, server: &str) -> Self { |
no outgoing calls