mirror of
https://github.com/lexmount/moli.git
synced 2026-09-23 08:01:28 +00:00
11 lines
420 B
Rust
11 lines
420 B
Rust
//! Renderer-neutral structured clone wire payload types.
|
|
//!
|
|
//! This crate deliberately does not serialize or deserialize JavaScript values.
|
|
//! V8-specific structured clone work remains in `moli-renderer-v8`.
|
|
//! The types here are the transport payloads shared by renderer-neutral
|
|
//! services such as MessagePort and BroadcastChannel.
|
|
|
|
mod payload;
|
|
|
|
pub use payload::{StructuredCloneBytes, TransferredArrayBuffer};
|