pub type CodegenResult<T> = Result<T, CodegenError>;Expand description
A convenient alias for a Result that uses CodegenError as the error type.
Aliased Type§
pub enum CodegenResult<T> {
    Ok(T),
    Err(CodegenError),
}pub type CodegenResult<T> = Result<T, CodegenError>;A convenient alias for a Result that uses CodegenError as the error type.
pub enum CodegenResult<T> {
    Ok(T),
    Err(CodegenError),
}