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