pub type FetcherResult = Result<Cursor<Vec<u8>>, RunnerError>;
pub enum FetcherResult { Ok(Cursor<Vec<u8>>), Err(RunnerError), }
Contains the success value
Contains the error value