Builder: set the stat flag.
(mut self, stat: bool)
| 133 | |
| 134 | /// Builder: set the stat flag. |
| 135 | pub fn with_stat(mut self, stat: bool) -> Self { |
| 136 | self.stat = stat; |
| 137 | self |
| 138 | } |
| 139 | |
| 140 | /// Builder: set the no-color flag. |
| 141 | pub fn with_no_color(mut self, no_color: bool) -> Self { |
no outgoing calls