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