(&self)
| 405 | /// Convert to core recording options. |
| 406 | #[must_use] |
| 407 | pub fn to_core_options(&self) -> CoreRecordingOptions { |
| 408 | CoreRecordingOptions::new() |
| 409 | .algorithm(self.algorithm) |
| 410 | .default_encoding(self.default_encoding) |
| 411 | .max_file_size(self.max_file_size as usize) |
| 412 | .skip_binary(self.skip_binary) |
| 413 | .record_empty_files(self.record_empty_files) |
| 414 | .context_lines(self.context_lines) |
| 415 | } |
| 416 | |
| 417 | /// Convert to assembly options. |
| 418 | #[must_use] |
no test coverage detected