Builder: set the name-only flag.
(mut self, name_only: bool)
| 145 | |
| 146 | /// Builder: set the name-only flag. |
| 147 | pub fn with_name_only(mut self, name_only: bool) -> Self { |
| 148 | self.name_only = name_only; |
| 149 | self |
| 150 | } |
| 151 | |
| 152 | /// Builder: set the name-status flag. |
| 153 | pub fn with_name_status(mut self, name_status: bool) -> Self { |
no outgoing calls