Builder: set the no-color flag.
(mut self, no_color: bool)
| 135 | |
| 136 | /// Builder: set the no-color flag. |
| 137 | pub fn with_no_color(mut self, no_color: bool) -> Self { |
| 138 | self.no_color = no_color; |
| 139 | self |
| 140 | } |
| 141 | |
| 142 | /// Builder: set the name-only flag. |
| 143 | pub fn with_name_only(mut self, name_only: bool) -> Self { |
no outgoing calls