pub type ReaderResult = Result<Cursor<Vec<u8>>, ExecutorError>;
See: https://asimov-specs.github.io/program-patterns/#reader
pub enum ReaderResult { Ok(Cursor<Vec<u8>>), Err(ExecutorError), }
Contains the success value
Contains the error value