Builder: set the view name.
(mut self, view: impl Into<String>)
| 172 | |
| 173 | /// Builder: set the view name. |
| 174 | pub fn with_view(mut self, view: impl Into<String>) -> Self { |
| 175 | self.view = view.into(); |
| 176 | self |
| 177 | } |
| 178 | |
| 179 | /// Builder: set the insecure flag. |
| 180 | pub fn with_insecure(mut self, insecure: bool) -> Self { |
no outgoing calls