Configure the metrics set used by the stream.
(mut self, metrics: &'a ExecutionPlanMetricsSet)
| 74 | |
| 75 | /// Configure the metrics set used by the stream. |
| 76 | pub fn with_metrics(mut self, metrics: &'a ExecutionPlanMetricsSet) -> Self { |
| 77 | self.metrics = Some(metrics); |
| 78 | self |
| 79 | } |
| 80 | |
| 81 | /// Configure the behavior when opening or scanning a file fails. |
| 82 | pub fn with_on_error(mut self, on_error: OnError) -> Self { |
no outgoing calls