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