(
rows: &[OhlcvRow],
rows_removed_by_deduplication: usize,
)
| 546 | } |
| 547 | |
| 548 | pub fn quality_report( |
| 549 | rows: &[OhlcvRow], |
| 550 | rows_removed_by_deduplication: usize, |
| 551 | ) -> DataQualityReport { |
| 552 | let cols = rows_to_columns(rows); |
| 553 | quality_report_columns(&cols, rows_removed_by_deduplication).expect("validated rows") |
| 554 | } |
| 555 | |
| 556 | pub fn align_calendar_rows( |
| 557 | rows: &[OhlcvRow], |
nothing calls this directly
no test coverage detected