pub type WasmResult<T> = Result<T, WasmError>;
WASM result type
pub enum WasmResult<T> { Ok(T), Err(WasmError), }
Contains the success value
Contains the error value