wasmflow-component 0.10.0

WaPC-related functions for Wasmflow
Documentation
1
2
3
4
5
6
7
8
9
pub mod error;
pub mod exports;
pub mod imports;
pub mod runtime;

use error::Error;
use yielding_executor::single_threaded as executor;
/// Utility type for a Pin<Box<Future<T>>>
pub type BoxedFuture<T> = std::pin::Pin<Box<dyn std::future::Future<Output = T> + Send + 'static>>;