(
repo: R,
max_log_format_version: u8,
offset: u64,
de: &'a D,
)
| 551 | } |
| 552 | |
| 553 | pub fn transactions_from<'a, R, D, T>( |
| 554 | repo: R, |
| 555 | max_log_format_version: u8, |
| 556 | offset: u64, |
| 557 | de: &'a D, |
| 558 | ) -> io::Result<impl Iterator<Item = Result<Transaction<T>, D::Error>> + 'a> |
| 559 | where |
| 560 | R: Repo + 'a, |
| 561 | D: Decoder<Record = T>, |
| 562 | D::Error: From<error::Traversal>, |
| 563 | T: 'a, |
| 564 | { |
| 565 | commits_from(repo, max_log_format_version, offset) |
| 566 | .map(|commits| transactions_from_internal(commits.with_log_format_version(), offset, de)) |
| 567 | } |
| 568 | |
| 569 | pub fn fold_transactions_from<R, D>(repo: R, max_log_format_version: u8, offset: u64, de: D) -> Result<(), D::Error> |
| 570 | where |
nothing calls this directly
no test coverage detected
searching dependent graphs…