Skip to main content

webtrans_wasm/
lib.rs

1//! WebTransport wrapper for WebAssembly.
2//!
3//! Provides ergonomic Rust bindings around the browser WebTransport API.
4
5mod client;
6mod error;
7mod recv;
8mod send;
9mod session;
10
11pub use client::*;
12pub use error::*;
13pub use recv::*;
14pub use send::*;
15pub use session::*;
16
17pub use webtrans_trait as generic;