pub trait FetchEngine: Send + Sync {
    fn fetch(&mut self, path: &str) -> Result<Box<FetchProcess>, FetchStatus>;

    fn cancel(&mut self, reader: FetchProcess) { ... }
}

Required Methods

Provided Methods

Implementors