pub trait CarSplitter { // Required method fn next_chunk(&mut self) -> Result<Option<Vec<u8>>, CarSplitterError>; }