pub type CompileResult<T> = Result<T, CompileError>;Expand description
Result of an attempt to compile the provided WebAssembly module into a Module.
Aliases the standard Result with CompileError as the default error type.
Aliased Type§
pub enum CompileResult<T> {
Ok(T),
Err(CompileError),
}