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