Builder: set the output format.
(mut self, format: LogFormat)
| 151 | |
| 152 | /// Builder: set the output format. |
| 153 | pub fn with_format(mut self, format: LogFormat) -> Self { |
| 154 | self.format = format; |
| 155 | self |
| 156 | } |
| 157 | |
| 158 | /// Builder: set reverse order. |
| 159 | pub fn with_reverse(mut self, reverse: bool) -> Self { |
no outgoing calls