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