(&self)
| 384 | /// Convert to core recording options. |
| 385 | #[must_use] |
| 386 | pub fn to_core_options(&self) -> CoreRecordingOptions { |
| 387 | CoreRecordingOptions::new() |
| 388 | .algorithm(self.algorithm) |
| 389 | .default_encoding(self.default_encoding) |
| 390 | .max_file_size(self.max_file_size as usize) |
| 391 | .skip_binary(self.skip_binary) |
| 392 | .record_empty_files(self.record_empty_files) |
| 393 | .context_lines(self.context_lines) |
| 394 | } |
| 395 | |
| 396 | /// Convert to assembly options. |
| 397 | #[must_use] |
no test coverage detected