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