pub fn Ok<T>(value: T) -> Result<T, Error>
Return core::result::Result::<T, wasmtime::Error>::Ok(value).
core::result::Result::<T, wasmtime::Error>::Ok(value)
Useful in situations where Rust’s type inference cannot figure out that the Result’s error type is Error.
Result
Error