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