wasmtime-rwasm 34.0.1

High-level API to expose the Wasmtime runtime
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use std::marker::PhantomData;

/// Represents the readable end of a Component Model `future`.
pub struct FutureReader<T> {
    _phantom: PhantomData<T>,
}

/// Represents the readable end of a Component Model `stream`.
pub struct StreamReader<T> {
    _phantom: PhantomData<T>,
}

/// Represents a Component Model `error-context`.
pub struct ErrorContext {}