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