webtrans 0.5.0

WebTransport library for native and WebAssembly
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! WebAssembly WebTransport implementation re-exports.
//!
//! This module exposes browser-based WebTransport bindings for `wasm32`
//! targets, backed by the WebTransport API.
//!
//! Server-side functionality is not available in this environment;
//! only client-side APIs are re-exported.

/// Re-export the underlying browser WebTransport implementation
pub use webtrans_wasm as wasm;

pub use webtrans_wasm::{
    Client, ClientBuilder, CongestionControl, RecvStream, SendStream, Session,
};