Builder: set the --all flag.
(mut self, all: bool)
| 267 | |
| 268 | /// Builder: set the --all flag. |
| 269 | pub fn with_all(mut self, all: bool) -> Self { |
| 270 | self.all = all; |
| 271 | self |
| 272 | } |
| 273 | |
| 274 | /// Builder: set files to record. |
| 275 | pub fn with_files<I, S>(mut self, files: I) -> Self |
no outgoing calls