pub type ReplResult<T> = Result<T, ReplError>;
Core REPL result type
pub enum ReplResult<T> { Ok(T), Err(ReplError), }
Contains the success value
Contains the error value