Builder: set the name-status flag.
(mut self, name_status: bool)
| 147 | |
| 148 | /// Builder: set the name-status flag. |
| 149 | pub fn with_name_status(mut self, name_status: bool) -> Self { |
| 150 | self.name_status = name_status; |
| 151 | self |
| 152 | } |
| 153 | |
| 154 | /// Builder: set the view to compare against. |
| 155 | pub fn with_view(mut self, view: impl Into<String>) -> Self { |
no outgoing calls