pub type RuntimeResult<T> = Result<T, RuntimeError>;Expand description
Result of an attempt to run the provided WebAssembly instance.
Aliases the standard Result with RuntimeError as the default error type.
Aliased Type§
pub enum RuntimeResult<T> {
Ok(T),
Err(RuntimeError),
}