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