pub trait FetchProcessReader: Send + Sync {
// Required methods
fn status(&self) -> FetchStatus;
fn read(&self) -> Option<Vec<u8>>;
fn box_clone(&self) -> Box<dyn FetchProcessReader>;
}
pub trait FetchProcessReader: Send + Sync {
// Required methods
fn status(&self) -> FetchStatus;
fn read(&self) -> Option<Vec<u8>>;
fn box_clone(&self) -> Box<dyn FetchProcessReader>;
}