Builder: set the view name.
(mut self, view: impl Into<String>)
| 262 | |
| 263 | /// Builder: set the view name. |
| 264 | pub fn with_view(mut self, view: impl Into<String>) -> Self { |
| 265 | self.view = view.into(); |
| 266 | self |
| 267 | } |
| 268 | |
| 269 | /// Builder: set the insecure flag. |
| 270 | pub fn with_insecure(mut self, insecure: bool) -> Self { |
no outgoing calls