fusio 0.6.0

Fusio provides lean, minimal cost abstraction and extensible Read / Write trait to multiple storage on multiple poll-based / completion-based async runtime.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Back-compat shims for the OPFS executor.
//! Prefer `executor::web::WebExecutor` for wasm environments without OPFS.

pub use super::web::{WebExecutor, WebJoinHandle};

/// Alias maintained for existing OPFS users; the implementation lives in
/// `executor::web`.
pub type OpfsExecutor = WebExecutor;

/// Alias maintained for existing OPFS users; see [`WebJoinHandle`].
pub type OpfsJoinHandle<R> = WebJoinHandle<R>;