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