refactor: separation of json-stream-parser to own crate

This commit is contained in:
Per Stark
2025-04-22 16:44:37 +02:00
parent 3fdee5a3a3
commit ce006f6ecc
8 changed files with 26 additions and 13 deletions
+1 -1
View File
@@ -258,7 +258,7 @@ fn get_plot_html(
Ok(plot.to_html())
}
// Small utility to unzip tuple3 vectors from iterators (add this helper)
// Small utility to unzip tuple3 vectors from iterators
trait Unzip3<A, B, C> {
fn unzip3(self) -> (Vec<A>, Vec<B>, Vec<C>);
}