pub type ReplResult<T> = Result<T, Error>;
Result type for Repline
enum ReplResult<T> { Ok(T), Err(Error), }
Contains the success value
Contains the error value