(&self)
| 425 | /// Convert to core recording options. |
| 426 | #[must_use] |
| 427 | pub fn to_core_options(&self) -> CoreRecordingOptions { |
| 428 | CoreRecordingOptions::new() |
| 429 | .algorithm(self.algorithm) |
| 430 | .default_encoding(self.default_encoding) |
| 431 | .max_file_size(self.max_file_size as usize) |
| 432 | .skip_binary(self.skip_binary) |
| 433 | .record_empty_files(self.record_empty_files) |
| 434 | .context_lines(self.context_lines) |
| 435 | } |
| 436 | |
| 437 | /// Convert to assembly options. |
| 438 | #[must_use] |
no test coverage detected