pub type CompileResult<T> = Result<T, CompileError>;
Custom result type used throughout this crate.
enum CompileResult<T> { Ok(T), Err(Error), }
Contains the success value
Contains the error value