2 use std::iter::Iterator;
4 #[derive(Debug, PartialEq, Eq)]
11 fn read_rows(_input: &impl std::io::Read) -> impl Iterator<Item = RowInput> {
13 label: String::from("foo"),
19 pub fn tablify(_input: &impl std::io::Read) -> String {
20 String::from("Hello, world!")
30 read_rows(&&b"foo"[..]).collect::<Vec<_>>(),
32 label: String::from("foo"),