web_sys/features/
gen_VideoPixelFormat.rs1#![allow(unused_imports)]
2#![allow(clippy::all)]
3use wasm_bindgen::prelude::*;
4#[cfg(web_sys_unstable_apis)]
5#[wasm_bindgen]
6#[doc = "The `VideoPixelFormat` enum."]
7#[doc = ""]
8#[doc = "*This API requires the following crate features to be activated: `VideoPixelFormat`*"]
9#[doc = ""]
10#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
11#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
12#[derive(Debug, Clone, Copy, PartialEq, Eq)]
13pub enum VideoPixelFormat {
14 I420 = "I420",
15 I420a = "I420A",
16 I422 = "I422",
17 I444 = "I444",
18 Nv12 = "NV12",
19 Rgba = "RGBA",
20 Rgbx = "RGBX",
21 Bgra = "BGRA",
22 Bgrx = "BGRX",
23}