Builder: set the --all flag.
(mut self, all: bool)
| 275 | |
| 276 | /// Builder: set the --all flag. |
| 277 | pub fn with_all(mut self, all: bool) -> Self { |
| 278 | self.all = all; |
| 279 | self |
| 280 | } |
| 281 | |
| 282 | /// Builder: set files to record. |
| 283 | pub fn with_files<I, S>(mut self, files: I) -> Self |
no outgoing calls