webbind 0.1.44

Rust bindings for the web api, auto-generated from WebIDL
Documentation
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
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
use super::*;

/// The GPURenderBundleEncoder class.
/// [`GPURenderBundleEncoder`](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder)
#[derive(Clone, Debug, PartialEq, PartialOrd)]
#[repr(transparent)]
pub struct GPURenderBundleEncoder {
    inner: Any,
}

impl FromVal for GPURenderBundleEncoder {
    fn from_val(v: &Any) -> Self {
        GPURenderBundleEncoder {
            inner: Any::from_val(v),
        }
    }
    fn take_ownership(v: AnyHandle) -> Self {
        Self::from_val(&Any::take_ownership(v))
    }
    fn as_handle(&self) -> AnyHandle {
        self.inner.as_handle()
    }
}

impl core::ops::Deref for GPURenderBundleEncoder {
    type Target = Any;
    fn deref(&self) -> &Self::Target {
        &self.inner
    }
}

impl core::ops::DerefMut for GPURenderBundleEncoder {
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.inner
    }
}

impl AsRef<Any> for GPURenderBundleEncoder {
    fn as_ref(&self) -> &Any {
        &self.inner
    }
}

impl AsMut<Any> for GPURenderBundleEncoder {
    fn as_mut(&mut self) -> &mut Any {
        &mut self.inner
    }
}

impl From<GPURenderBundleEncoder> for Any {
    fn from(s: GPURenderBundleEncoder) -> Any {
        let handle = s.inner.as_handle();
        core::mem::forget(s);
        Any::take_ownership(handle)
    }
}

impl From<&GPURenderBundleEncoder> for Any {
    fn from(s: &GPURenderBundleEncoder) -> Any {
        s.inner.clone().into()
    }
}

jsbind::utils::impl_dyn_cast!(GPURenderBundleEncoder);

impl GPURenderBundleEncoder {
    /// Getter of the `label` attribute.
    /// [`GPURenderBundleEncoder.label`](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/label)
    pub fn label(&self) -> JsString {
        self.inner.get("label").as_::<JsString>()
    }

    /// Setter of the `label` attribute.
    /// [`GPURenderBundleEncoder.label`](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/label)
    pub fn set_label(&mut self, value: &JsString) {
        self.inner.set("label", value);
    }
}
impl GPURenderBundleEncoder {
    /// The finish method.
    /// [`GPURenderBundleEncoder.finish`](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/finish)
    pub fn finish(&self) -> GPURenderBundle {
        self.inner.call("finish", &[]).as_::<GPURenderBundle>()
    }
}
impl GPURenderBundleEncoder {
    /// The finish method.
    /// [`GPURenderBundleEncoder.finish`](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/finish)
    pub fn finish_with_descriptor(
        &self,
        descriptor: &GPURenderBundleDescriptor,
    ) -> GPURenderBundle {
        self.inner
            .call("finish", &[descriptor.into()])
            .as_::<GPURenderBundle>()
    }
}
impl GPURenderBundleEncoder {
    /// The pushDebugGroup method.
    /// [`GPURenderBundleEncoder.pushDebugGroup`](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/pushDebugGroup)
    pub fn push_debug_group(&self, group_label: &JsString) -> Undefined {
        self.inner
            .call("pushDebugGroup", &[group_label.into()])
            .as_::<Undefined>()
    }
}
impl GPURenderBundleEncoder {
    /// The popDebugGroup method.
    /// [`GPURenderBundleEncoder.popDebugGroup`](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/popDebugGroup)
    pub fn pop_debug_group(&self) -> Undefined {
        self.inner.call("popDebugGroup", &[]).as_::<Undefined>()
    }
}
impl GPURenderBundleEncoder {
    /// The insertDebugMarker method.
    /// [`GPURenderBundleEncoder.insertDebugMarker`](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/insertDebugMarker)
    pub fn insert_debug_marker(&self, marker_label: &JsString) -> Undefined {
        self.inner
            .call("insertDebugMarker", &[marker_label.into()])
            .as_::<Undefined>()
    }
}
impl GPURenderBundleEncoder {
    /// The setBindGroup method.
    /// [`GPURenderBundleEncoder.setBindGroup`](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/setBindGroup)
    pub fn set_bind_group(&self, index: &Any, bind_group: &GPUBindGroup) -> Undefined {
        self.inner
            .call("setBindGroup", &[index.into(), bind_group.into()])
            .as_::<Undefined>()
    }
}
impl GPURenderBundleEncoder {
    /// The setBindGroup method.
    /// [`GPURenderBundleEncoder.setBindGroup`](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/setBindGroup)
    pub fn set_bind_group_with_dynamic_offsets(
        &self,
        index: &Any,
        bind_group: &GPUBindGroup,
        dynamic_offsets: &TypedArray<Any>,
    ) -> Undefined {
        self.inner
            .call(
                "setBindGroup",
                &[index.into(), bind_group.into(), dynamic_offsets.into()],
            )
            .as_::<Undefined>()
    }
}
impl GPURenderBundleEncoder {
    /// The setBindGroup method.
    /// [`GPURenderBundleEncoder.setBindGroup`](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/setBindGroup)
    pub fn set_bind_group_with_index_and_bind_group_and_dynamic_offsets_data_and_dynamic_offsets_data_start_and_dynamic_offsets_data_length(
        &self,
        index: &Any,
        bind_group: &GPUBindGroup,
        dynamic_offsets_data: &Uint32Array,
        dynamic_offsets_data_start: &Any,
        dynamic_offsets_data_length: &Any,
    ) -> Undefined {
        self.inner
            .call(
                "setBindGroup",
                &[
                    index.into(),
                    bind_group.into(),
                    dynamic_offsets_data.into(),
                    dynamic_offsets_data_start.into(),
                    dynamic_offsets_data_length.into(),
                ],
            )
            .as_::<Undefined>()
    }
}
impl GPURenderBundleEncoder {
    /// The setPipeline method.
    /// [`GPURenderBundleEncoder.setPipeline`](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/setPipeline)
    pub fn set_pipeline(&self, pipeline: &GPURenderPipeline) -> Undefined {
        self.inner
            .call("setPipeline", &[pipeline.into()])
            .as_::<Undefined>()
    }
}
impl GPURenderBundleEncoder {
    /// The setIndexBuffer method.
    /// [`GPURenderBundleEncoder.setIndexBuffer`](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/setIndexBuffer)
    pub fn set_index_buffer(&self, buffer: &GPUBuffer, index_format: &GPUIndexFormat) -> Undefined {
        self.inner
            .call("setIndexBuffer", &[buffer.into(), index_format.into()])
            .as_::<Undefined>()
    }
}
impl GPURenderBundleEncoder {
    /// The setIndexBuffer method.
    /// [`GPURenderBundleEncoder.setIndexBuffer`](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/setIndexBuffer)
    pub fn set_index_buffer_with_offset(
        &self,
        buffer: &GPUBuffer,
        index_format: &GPUIndexFormat,
        offset: &Any,
    ) -> Undefined {
        self.inner
            .call(
                "setIndexBuffer",
                &[buffer.into(), index_format.into(), offset.into()],
            )
            .as_::<Undefined>()
    }
}
impl GPURenderBundleEncoder {
    /// The setIndexBuffer method.
    /// [`GPURenderBundleEncoder.setIndexBuffer`](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/setIndexBuffer)
    pub fn set_index_buffer_with_offset_and_size(
        &self,
        buffer: &GPUBuffer,
        index_format: &GPUIndexFormat,
        offset: &Any,
        size: &Any,
    ) -> Undefined {
        self.inner
            .call(
                "setIndexBuffer",
                &[
                    buffer.into(),
                    index_format.into(),
                    offset.into(),
                    size.into(),
                ],
            )
            .as_::<Undefined>()
    }
}
impl GPURenderBundleEncoder {
    /// The setVertexBuffer method.
    /// [`GPURenderBundleEncoder.setVertexBuffer`](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/setVertexBuffer)
    pub fn set_vertex_buffer(&self, slot: &Any, buffer: &GPUBuffer) -> Undefined {
        self.inner
            .call("setVertexBuffer", &[slot.into(), buffer.into()])
            .as_::<Undefined>()
    }
}
impl GPURenderBundleEncoder {
    /// The setVertexBuffer method.
    /// [`GPURenderBundleEncoder.setVertexBuffer`](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/setVertexBuffer)
    pub fn set_vertex_buffer_with_offset(
        &self,
        slot: &Any,
        buffer: &GPUBuffer,
        offset: &Any,
    ) -> Undefined {
        self.inner
            .call(
                "setVertexBuffer",
                &[slot.into(), buffer.into(), offset.into()],
            )
            .as_::<Undefined>()
    }
}
impl GPURenderBundleEncoder {
    /// The setVertexBuffer method.
    /// [`GPURenderBundleEncoder.setVertexBuffer`](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/setVertexBuffer)
    pub fn set_vertex_buffer_with_offset_and_size(
        &self,
        slot: &Any,
        buffer: &GPUBuffer,
        offset: &Any,
        size: &Any,
    ) -> Undefined {
        self.inner
            .call(
                "setVertexBuffer",
                &[slot.into(), buffer.into(), offset.into(), size.into()],
            )
            .as_::<Undefined>()
    }
}
impl GPURenderBundleEncoder {
    /// The draw method.
    /// [`GPURenderBundleEncoder.draw`](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/draw)
    pub fn draw(&self, vertex_count: &Any) -> Undefined {
        self.inner
            .call("draw", &[vertex_count.into()])
            .as_::<Undefined>()
    }
}
impl GPURenderBundleEncoder {
    /// The draw method.
    /// [`GPURenderBundleEncoder.draw`](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/draw)
    pub fn draw_with_instance_count(&self, vertex_count: &Any, instance_count: &Any) -> Undefined {
        self.inner
            .call("draw", &[vertex_count.into(), instance_count.into()])
            .as_::<Undefined>()
    }
}
impl GPURenderBundleEncoder {
    /// The draw method.
    /// [`GPURenderBundleEncoder.draw`](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/draw)
    pub fn draw_with_instance_count_and_first_vertex(
        &self,
        vertex_count: &Any,
        instance_count: &Any,
        first_vertex: &Any,
    ) -> Undefined {
        self.inner
            .call(
                "draw",
                &[
                    vertex_count.into(),
                    instance_count.into(),
                    first_vertex.into(),
                ],
            )
            .as_::<Undefined>()
    }
}
impl GPURenderBundleEncoder {
    /// The draw method.
    /// [`GPURenderBundleEncoder.draw`](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/draw)
    pub fn draw_with_instance_count_and_first_vertex_and_first_instance(
        &self,
        vertex_count: &Any,
        instance_count: &Any,
        first_vertex: &Any,
        first_instance: &Any,
    ) -> Undefined {
        self.inner
            .call(
                "draw",
                &[
                    vertex_count.into(),
                    instance_count.into(),
                    first_vertex.into(),
                    first_instance.into(),
                ],
            )
            .as_::<Undefined>()
    }
}
impl GPURenderBundleEncoder {
    /// The drawIndexed method.
    /// [`GPURenderBundleEncoder.drawIndexed`](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/drawIndexed)
    pub fn draw_indexed(&self, index_count: &Any) -> Undefined {
        self.inner
            .call("drawIndexed", &[index_count.into()])
            .as_::<Undefined>()
    }
}
impl GPURenderBundleEncoder {
    /// The drawIndexed method.
    /// [`GPURenderBundleEncoder.drawIndexed`](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/drawIndexed)
    pub fn draw_indexed_with_instance_count(
        &self,
        index_count: &Any,
        instance_count: &Any,
    ) -> Undefined {
        self.inner
            .call("drawIndexed", &[index_count.into(), instance_count.into()])
            .as_::<Undefined>()
    }
}
impl GPURenderBundleEncoder {
    /// The drawIndexed method.
    /// [`GPURenderBundleEncoder.drawIndexed`](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/drawIndexed)
    pub fn draw_indexed_with_instance_count_and_first_index(
        &self,
        index_count: &Any,
        instance_count: &Any,
        first_index: &Any,
    ) -> Undefined {
        self.inner
            .call(
                "drawIndexed",
                &[
                    index_count.into(),
                    instance_count.into(),
                    first_index.into(),
                ],
            )
            .as_::<Undefined>()
    }
}
impl GPURenderBundleEncoder {
    /// The drawIndexed method.
    /// [`GPURenderBundleEncoder.drawIndexed`](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/drawIndexed)
    pub fn draw_indexed_with_instance_count_and_first_index_and_base_vertex(
        &self,
        index_count: &Any,
        instance_count: &Any,
        first_index: &Any,
        base_vertex: &Any,
    ) -> Undefined {
        self.inner
            .call(
                "drawIndexed",
                &[
                    index_count.into(),
                    instance_count.into(),
                    first_index.into(),
                    base_vertex.into(),
                ],
            )
            .as_::<Undefined>()
    }
}
impl GPURenderBundleEncoder {
    /// The drawIndexed method.
    /// [`GPURenderBundleEncoder.drawIndexed`](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/drawIndexed)
    pub fn draw_indexed_with_instance_count_and_first_index_and_base_vertex_and_first_instance(
        &self,
        index_count: &Any,
        instance_count: &Any,
        first_index: &Any,
        base_vertex: &Any,
        first_instance: &Any,
    ) -> Undefined {
        self.inner
            .call(
                "drawIndexed",
                &[
                    index_count.into(),
                    instance_count.into(),
                    first_index.into(),
                    base_vertex.into(),
                    first_instance.into(),
                ],
            )
            .as_::<Undefined>()
    }
}
impl GPURenderBundleEncoder {
    /// The drawIndirect method.
    /// [`GPURenderBundleEncoder.drawIndirect`](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/drawIndirect)
    pub fn draw_indirect(&self, indirect_buffer: &GPUBuffer, indirect_offset: &Any) -> Undefined {
        self.inner
            .call(
                "drawIndirect",
                &[indirect_buffer.into(), indirect_offset.into()],
            )
            .as_::<Undefined>()
    }
}
impl GPURenderBundleEncoder {
    /// The drawIndexedIndirect method.
    /// [`GPURenderBundleEncoder.drawIndexedIndirect`](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/drawIndexedIndirect)
    pub fn draw_indexed_indirect(
        &self,
        indirect_buffer: &GPUBuffer,
        indirect_offset: &Any,
    ) -> Undefined {
        self.inner
            .call(
                "drawIndexedIndirect",
                &[indirect_buffer.into(), indirect_offset.into()],
            )
            .as_::<Undefined>()
    }
}