web_webtransport_sys/
lib.rs

1//! WebAPI WebTransport low-level bindings.
2//!
3//! Based on the [WebTransport IDL][idl].
4//!
5//! [idl]: https://w3c.github.io/webtransport/#idl-index
6
7#![no_std]
8
9/// Generated bindings.
10#[allow(missing_docs, clippy::missing_docs_in_private_items, unsafe_code)]
11mod gen;
12
13pub use gen::*;