pub type TerminalResult<T> = Result<T>;
pub enum TerminalResult<T> { Ok(T), Err(Report), }
Contains the success value
Contains the error value