threadporter/lib.rs
1//! Threadporter — first aid kit for `!Send` + `!Sync` values ⛑️
2//!
3//! This crate provides help for working with types that are
4//! `!Send` + `!Sync` as they usually occur when targeting
5//! WebAssembly and working with JavaScript objects.
6//!
7
8mod thread_bound;
9pub use thread_bound::{thread_bound, ThreadBound};