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