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