1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
//! [`WebTransport`]
//!
//! <https://w3c.github.io/webtransport/#webtransport>
use js_sys::Object;
use wasm_bindgen::prelude::*;
use web_sys::{DomException, ReadableStream};
use super::*;
#[wasm_bindgen]
extern "C" {
/// The `WebTransport` interface.
///
/// <https://w3c.github.io/webtransport/#webtransport>
#[wasm_bindgen(extends = Object, typescript_type = "WebTransport")]
#[derive(Debug, Clone, PartialEq, Eq)]
pub type WebTransport;
/// ```webidl
/// constructor(USVString url, optional WebTransportOptions options = {});
/// ```
///
/// <https://w3c.github.io/webtransport/#dom-webtransport-webtransport>
///
/// The `new WebTransport(url)` constructor, creating
/// a new instance of`WebTransport`.
#[wasm_bindgen(constructor, catch)]
pub fn new(url: &str) -> Result<WebTransport, DomException>;
/// ```webidl
/// constructor(USVString url, optional WebTransportOptions options = {});
/// ```
///
/// <https://w3c.github.io/webtransport/#dom-webtransport-webtransport>
///
/// The `new WebTransport(url, { ... })` constructor, creating
/// a new instance of `WebTransport`.
#[wasm_bindgen(constructor, catch)]
pub fn new_with_options(
url: &str,
options: &WebTransportOptions,
) -> Result<WebTransport, DomException>;
// =====
/// ```webidl
/// Promise<WebTransportConnectionStats> getStats();
/// ```
///
/// <https://w3c.github.io/webtransport/#dom-webtransport-getstats>
///
/// Gathers stats for this WebTransport's underlying connection and reports
/// the result asynchronously.
#[wasm_bindgen(method, js_name = getStats)]
pub async fn get_stats(this: &WebTransport) -> WebTransportConnectionStats;
/// ```webidl
/// readonly attribute Promise<undefined> ready;
/// ```
///
/// <https://w3c.github.io/webtransport/#dom-webtransport-ready>
///
/// A promise fulfilled when the associated WebTransport session gets
/// established, or rejected if the establishment process failed.
#[wasm_bindgen(method, getter, catch)]
pub async fn ready(this: &WebTransport) -> Result<(), DomException>;
/// ```webidl
/// readonly attribute WebTransportReliabilityMode reliability;
/// ```
///
/// <https://w3c.github.io/webtransport/#dom-webtransport-reliability>
///
/// Whether connection supports unreliable (over UDP) transport or only
/// reliable (over TCP fallback) transport.
/// Returns "pending" until a connection has been established.
#[wasm_bindgen(method, getter)]
pub fn reliability(this: &WebTransport) -> WebTransportReliabilityMode;
/// ```webidl
/// readonly attribute WebTransportCongestionControl congestionControl;
/// ```
///
/// <https://w3c.github.io/webtransport/#dom-webtransport-congestioncontrol>
///
/// The application’s preference, if requested in the constructor, and
/// satisfied by the user agent, for a congestion control algorithm
/// optimized for either throughput or low latency
/// for sending on this connection.
/// If a preference was requested but not satisfied, then the value
/// is "default".
#[wasm_bindgen(method, getter = congestionControl)]
pub fn congestion_control(this: &WebTransport) -> WebTransportCongestionControl;
/// ```webidl
/// [EnforceRange] attribute unsigned short? anticipatedConcurrentIncomingUnidirectionalStreams;
/// ```
///
/// <https://w3c.github.io/webtransport/#dom-webtransport-anticipatedconcurrentincomingunidirectionalstreams>
///
/// Optionally lets an application specify the number of concurrently open
/// incoming unidirectional streams it anticipates the server creating.
/// If not null, the user agent SHOULD attempt to reduce future round-trips
/// by taking `[[AnticipatedConcurrentIncomingUnidirectionalStreams]]` into
/// consideration in its negotiations with the server.
#[wasm_bindgen(method, getter = anticipatedConcurrentIncomingUnidirectionalStreams)]
pub fn anticipated_concurrent_incoming_unidirectional_streams(
this: &WebTransport,
) -> Option<u16>;
/// ```webidl
/// [EnforceRange] attribute unsigned short? anticipatedConcurrentIncomingUnidirectionalStreams;
/// ```
///
/// <https://w3c.github.io/webtransport/#dom-webtransport-anticipatedconcurrentincomingunidirectionalstreams>
///
/// Optionally lets an application specify the number of concurrently open
/// incoming unidirectional streams it anticipates the server creating.
/// If not null, the user agent SHOULD attempt to reduce future round-trips
/// by taking `[[AnticipatedConcurrentIncomingUnidirectionalStreams]]` into
/// consideration in its negotiations with the server.
#[wasm_bindgen(method, setter = anticipatedConcurrentIncomingUnidirectionalStreams)]
pub fn set_option_anticipated_concurrent_incoming_unidirectional_streams(
this: &WebTransport,
val: Option<u16>,
);
/// ```webidl
/// [EnforceRange] attribute unsigned short? anticipatedConcurrentIncomingBidirectionalStreams;
/// ```
///
/// <https://w3c.github.io/webtransport/#dom-webtransport-anticipatedconcurrentincomingbidirectionalstreams>
///
/// Optionally lets an application specify the number of concurrently open
/// bidirectional streams it anticipates the server creating.
/// If not null, the user agent SHOULD attempt to reduce future round-trips
/// by taking `[[AnticipatedConcurrentIncomingBidirectionalStreams]]` into
/// consideration in its negotiations with the server.
#[wasm_bindgen(method, getter = anticipatedConcurrentIncomingBidirectionalStreams)]
pub fn anticipated_concurrent_incoming_bidirectional_streams(
this: &WebTransport,
) -> Option<u16>;
/// ```webidl
/// [EnforceRange] attribute unsigned short? anticipatedConcurrentIncomingBidirectionalStreams;
/// ```
///
/// <https://w3c.github.io/webtransport/#dom-webtransport-anticipatedconcurrentincomingbidirectionalstreams>
///
/// Optionally lets an application specify the number of concurrently open
/// bidirectional streams it anticipates the server creating.
/// If not null, the user agent SHOULD attempt to reduce future round-trips
/// by taking `[[AnticipatedConcurrentIncomingBidirectionalStreams]]` into
/// consideration in its negotiations with the server.
#[wasm_bindgen(method, setter = anticipatedConcurrentIncomingBidirectionalStreams)]
pub fn set_option_anticipated_concurrent_incoming_bidirectional_streams(
this: &WebTransport,
val: Option<u16>,
);
// =====
/// ```webidl
/// readonly attribute Promise<WebTransportCloseInfo> closed;
/// ```
///
/// <https://w3c.github.io/webtransport/#dom-webtransport-closed>
///
/// A promise fulfilled when the associated WebTransport object is closed
/// gracefully, or rejected when it is closed abruptly or
/// failed on initialization.
#[wasm_bindgen(method, getter, catch)]
pub async fn closed(this: &WebTransport) -> Result<WebTransportCloseInfo, DomException>;
/// ```webidl
/// readonly attribute Promise<undefined> draining;
/// ```
///
/// <https://w3c.github.io/webtransport/#dom-webtransport-draining>
///
/// A promise fulfilled when the associated WebTransport session receives
/// a DRAIN_WEBTRANSPORT_SESSION capsule or a GOAWAY frame.
#[wasm_bindgen(method, getter)]
pub async fn draining(this: &WebTransport);
/// ```webidl
/// undefined close(optional WebTransportCloseInfo closeInfo = {});
/// ```
///
/// <https://w3c.github.io/webtransport/#dom-webtransport-close>
#[wasm_bindgen(method)]
pub fn close(this: &WebTransport);
/// ```webidl
/// undefined close(optional WebTransportCloseInfo closeInfo = {});
/// ```
///
/// <https://w3c.github.io/webtransport/#dom-webtransport-close>
#[wasm_bindgen(method, js_name = close)]
pub fn close_with_info(this: &WebTransport, close_info: &WebTransportCloseInfo);
// =====
/// ```webidl
/// readonly attribute WebTransportDatagramDuplexStream datagrams;
/// ```
///
/// <https://w3c.github.io/webtransport/#dom-webtransport-datagrams>
///
/// A single duplex stream for sending and receiving datagrams over this
/// session.
#[wasm_bindgen(method, getter)]
pub fn datagrams(this: &WebTransport) -> WebTransportDatagramDuplexStream;
// =====
/// ```webidl
/// Promise<WebTransportBidirectionalStream> createBidirectionalStream(
/// optional WebTransportSendStreamOptions options = {});
/// ```
///
/// <https://w3c.github.io/webtransport/#dom-webtransport-createbidirectionalstream>
///
/// Creates a [`WebTransportBidirectionalStream`] object for an outgoing
/// bidirectional stream.
/// Note that the mere creation of a stream is not immediately visible
/// to the peer until it is used to send data.
#[wasm_bindgen(method, js_name = createBidirectionalStream, catch)]
pub async fn create_bidirectional_stream(
this: &WebTransport,
) -> Result<WebTransportBidirectionalStream, DomException>;
/// ```webidl
/// Promise<WebTransportBidirectionalStream> createBidirectionalStream(
/// optional WebTransportSendStreamOptions options = {});
/// ```
///
/// <https://w3c.github.io/webtransport/#dom-webtransport-createbidirectionalstream>
///
/// Creates a [`WebTransportBidirectionalStream`] object for an outgoing
/// bidirectional stream.
/// Note that the mere creation of a stream is not immediately visible
/// to the peer until it is used to send data.
#[wasm_bindgen(method, js_name = createBidirectionalStream, catch)]
pub async fn create_bidirectional_stream_with_options(
this: &WebTransport,
options: WebTransportSendStreamOptions,
) -> Result<WebTransportBidirectionalStream, DomException>;
/// ```webidl
/// /* a ReadableStream of WebTransportBidirectionalStream objects */
/// readonly attribute ReadableStream incomingBidirectionalStreams;
/// ```
///
/// <https://w3c.github.io/webtransport/#dom-webtransport-incomingbidirectionalstreams>
///
/// Returns a [`ReadableStream`] of [`WebTransportBidirectionalStreams`]
/// that have been received from the server.
#[wasm_bindgen(method, getter = incomingBidirectionalStreams)]
pub fn incoming_bidirectional_streams(this: &WebTransport) -> ReadableStream;
// =====
/// ```webidl
/// Promise<WebTransportSendStream> createUnidirectionalStream(
/// optional WebTransportSendStreamOptions options = {});
/// ```
///
/// <https://w3c.github.io/webtransport/#dom-webtransport-createunidirectionalstream>
///
/// Creates a [`WebTransportSendStream`] for an outgoing unidirectional
/// stream.
/// Note that the mere creation of a stream is not immediately visible
/// to the server until it is used to send data.
#[wasm_bindgen(method, js_name = createUnidirectionalStream, catch)]
pub async fn create_unidirectional_stream(
this: &WebTransport,
) -> Result<WebTransportSendStream, DomException>;
/// ```webidl
/// Promise<WebTransportSendStream> createUnidirectionalStream(
/// optional WebTransportSendStreamOptions options = {});
/// ```
///
/// <https://w3c.github.io/webtransport/#dom-webtransport-createunidirectionalstream>
///
/// Creates a [`WebTransportSendStream`] for an outgoing unidirectional
/// stream.
/// Note that the mere creation of a stream is not immediately visible
/// to the server until it is used to send data.
#[wasm_bindgen(method, js_name = createUnidirectionalStream, catch)]
pub async fn create_unidirectional_stream_with_options(
this: &WebTransport,
options: WebTransportSendStreamOptions,
) -> Result<WebTransportSendStream, DomException>;
/// ```webidl
/// /* a ReadableStream of WebTransportReceiveStream objects */
/// readonly attribute ReadableStream incomingUnidirectionalStreams;
/// ```
///
/// <https://w3c.github.io/webtransport/#dom-webtransport-incomingunidirectionalstreams>
///
/// A [`ReadableStream`] of unidirectional streams, each represented by
/// a [`WebTransportReceiveStream`], that have been received
/// from the server.
#[wasm_bindgen(method, getter = incomingUnidirectionalStreams)]
pub fn incoming_unidirectional_streams(this: &WebTransport) -> ReadableStream;
/// ```webidl
/// WebTransportSendGroup createSendGroup();
/// ```
///
/// <https://w3c.github.io/webtransport/#dom-webtransport-createsendgroup>
///
/// Creates a [`WebTransportSendGroup`].
#[wasm_bindgen(method, js_name = createSendGroup, catch)]
pub fn create_send_group(this: &WebTransport) -> Result<WebTransportSendGroup, DomException>;
// =====
/// ```webidl
/// static readonly attribute boolean supportsReliableOnly;
/// ```
///
/// <https://w3c.github.io/webtransport/#dom-webtransport-supportsreliableonly>
///
/// Returns true if the user agent supports WebTransport sessions over
/// exclusively reliable connections, otherwise false.
#[wasm_bindgen(static_method_of = WebTransport, js_name = supportsReliableOnly)]
pub fn supports_reliable_only() -> bool;
}
impl WebTransport {
crate::set_option_accessors! {
/// ```webidl
/// [EnforceRange] attribute unsigned short? anticipatedConcurrentIncomingUnidirectionalStreams;
/// ```
///
/// <https://w3c.github.io/webtransport/#dom-webtransport-anticipatedconcurrentincomingunidirectionalstreams>
///
/// Optionally lets an application specify the number of concurrently open
/// incoming unidirectional streams it anticipates the server creating.
/// If not null, the user agent SHOULD attempt to reduce future round-trips
/// by taking `[[AnticipatedConcurrentIncomingUnidirectionalStreams]]` into
/// consideration in its negotiations with the server.
anticipated_concurrent_incoming_unidirectional_streams: u16
}
crate::set_option_accessors! {
/// ```webidl
/// [EnforceRange] attribute unsigned short? anticipatedConcurrentIncomingBidirectionalStreams;
/// ```
///
/// <https://w3c.github.io/webtransport/#dom-webtransport-anticipatedconcurrentincomingbidirectionalstreams>
///
/// Optionally lets an application specify the number of concurrently open
/// bidirectional streams it anticipates the server creating.
/// If not null, the user agent SHOULD attempt to reduce future round-trips
/// by taking `[[AnticipatedConcurrentIncomingBidirectionalStreams]]` into
/// consideration in its negotiations with the server.
anticipated_concurrent_incoming_bidirectional_streams: u16
}
}