pub trait ReaderWorker: Send { // Required method fn read(&mut self) -> Result<Vec<Layer>, Box<dyn Error>>; }
Reader worker trait.