Builder: set the view name.
(mut self, view: impl Into<String>)
| 133 | |
| 134 | /// Builder: set the view name. |
| 135 | pub fn with_view(mut self, view: impl Into<String>) -> Self { |
| 136 | self.view = Some(view.into()); |
| 137 | self |
| 138 | } |
| 139 | |
| 140 | /// Builder: set tags-only filter. |
| 141 | pub fn with_tags_only(mut self, tags_only: bool) -> Self { |
no outgoing calls