Trait oxygengine_core::fetch::FetchEngine[][src]

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