pub type CodegenResult<T, E = CodegenError> = Result<T, E>;
Expand description
A Result type with CodegenError as the default error.
Aliased Type§
pub enum CodegenResult<T, E = CodegenError> {
Ok(T),
Err(E),
}
pub type CodegenResult<T, E = CodegenError> = Result<T, E>;
A Result type with CodegenError as the default error.
pub enum CodegenResult<T, E = CodegenError> {
Ok(T),
Err(E),
}