Ok

Function Ok 

pub fn Ok<T>(value: T) -> Result<T, Error>
Expand description

Return 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.