Builder: set the view name.
(mut self, view: impl Into<String>)
| 242 | |
| 243 | /// Builder: set the view name. |
| 244 | pub fn with_view(mut self, view: impl Into<String>) -> Self { |
| 245 | self.view = view.into(); |
| 246 | self |
| 247 | } |
| 248 | |
| 249 | /// Builder: set the insecure flag. |
| 250 | pub fn with_insecure(mut self, insecure: bool) -> Self { |
no outgoing calls