1 #![allow(unused_imports)]
2 use wasm_bindgen::prelude::*;
3 #[wasm_bindgen]
4 #[doc = "The `MediaKeyStatus` enum."]
5 #[doc = ""]
6 #[doc = "*This API requires the following crate features to be activated: `MediaKeyStatus`*"]
7 #[derive(Debug, Clone, Copy, PartialEq, Eq)]
8 pub enum MediaKeyStatus {
9     Usable = "usable",
10     Expired = "expired",
11     Released = "released",
12     OutputRestricted = "output-restricted",
13     OutputDownscaled = "output-downscaled",
14     StatusPending = "status-pending",
15     InternalError = "internal-error",
16 }
17