pub type CompileResult<T> = Result<T, DiagnosticWrapper<ErrorKind>>;Expand description
Result type for compilation operations.
Aliased Type§
pub enum CompileResult<T> {
Ok(T),
Err(DiagnosticWrapper<ErrorKind>),
}Variants§
Ok(T)
Contains the success value
Err(DiagnosticWrapper<ErrorKind>)
Contains the error value