pub type WasmEdgeResult<T> = Result<T, Box<WasmEdgeError>>;
Expand description
The WasmEdge result type.
Aliased Type§
enum WasmEdgeResult<T> {
Ok(T),
Err(Box<WasmEdgeError>),
}
pub type WasmEdgeResult<T> = Result<T, Box<WasmEdgeError>>;
The WasmEdge result type.
enum WasmEdgeResult<T> {
Ok(T),
Err(Box<WasmEdgeError>),
}