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