web-webtransport-sys 0.1.0

The low-level rust bindings for the WebTransport Web APIs.
Documentation
1
2
3
4
5
6
7
8
9
10
#![allow(unused_imports)]
use wasm_bindgen::prelude::*;
#[wasm_bindgen]
#[doc = "The `WebTransportCongestionControl` enum."]
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum WebTransportCongestionControl {
    Default = "default",
    Throughput = "throughput",
    LowLatency = "low-latency",
}