Builder: set the view name.
(mut self, view: impl Into<String>)
| 231 | |
| 232 | /// Builder: set the view name. |
| 233 | pub fn with_view(mut self, view: impl Into<String>) -> Self { |
| 234 | self.view = view.into(); |
| 235 | self |
| 236 | } |
| 237 | |
| 238 | /// Builder: set the insecure flag. |
| 239 | pub fn with_insecure(mut self, insecure: bool) -> Self { |
no outgoing calls