Configure the [`Morselizer`] used to open files. This will overwrite any setting from [`Self::with_file_opener`]
(mut self, morselizer: Box<dyn Morselizer>)
| 68 | /// |
| 69 | /// This will overwrite any setting from [`Self::with_file_opener`] |
| 70 | pub fn with_morselizer(mut self, morselizer: Box<dyn Morselizer>) -> Self { |
| 71 | self.morselizer = Some(morselizer); |
| 72 | self |
| 73 | } |
| 74 | |
| 75 | /// Configure the metrics set used by the stream. |
| 76 | pub fn with_metrics(mut self, metrics: &'a ExecutionPlanMetricsSet) -> Self { |
no outgoing calls
no test coverage detected