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