workflow_wasm/
lib.rs

1//!
2//! [<img alt="github" src="https://img.shields.io/badge/github-workflow--rs-8da0cb?style=for-the-badge&labelColor=555555&color=8da0cb&logo=github" height="20">](https://github.com/workflow-rs/workflow-rs)
3//! [<img alt="crates.io" src="https://img.shields.io/crates/v/workflow-wasm.svg?maxAge=2592000&style=for-the-badge&color=fc8d62&logo=rust" height="20">](https://crates.io/crates/workflow-wasm)
4//! [<img alt="docs.rs" src="https://img.shields.io/badge/docs.rs-workflow--wasm-56c2a5?maxAge=2592000&style=for-the-badge&logo=docs.rs" height="20">](https://docs.rs/workflow-wasm)
5//! <img alt="license" src="https://img.shields.io/crates/l/workflow-wasm.svg?maxAge=2592000&color=6ac&style=for-the-badge&logoColor=fff" height="20">
6//! <img src="https://img.shields.io/badge/platform- wasm32/browser -informational?style=for-the-badge&color=50a0f0" height="20">
7//! <img src="https://img.shields.io/badge/platform- wasm32/node.js -informational?style=for-the-badge&color=50a0f0" height="20">
8//! <img src="https://img.shields.io/badge/platform- wasm32/Node Webkit -informational?style=for-the-badge&color=50a0f0" height="20">
9//!
10//! This crate provides utilities for WASM32 environment
11//!
12
13extern crate self as workflow_wasm;
14
15pub mod callback;
16pub mod convert;
17pub mod error;
18pub mod extensions;
19pub mod init;
20pub mod jserror;
21pub mod options;
22pub mod panic;
23pub mod prelude;
24pub mod printable;
25pub mod result;
26pub mod serde;
27pub mod utils;
28
29#[cfg(feature = "defer")]
30pub mod defer;
31
32#[cfg(feature = "async-stream")]
33pub mod stream;