1 #![allow(unused_imports)]
2 use wasm_bindgen::prelude::*;
3 #[wasm_bindgen]
4 #[doc = "The `RtcPriorityType` enum."]
5 #[doc = ""]
6 #[doc = "*This API requires the following crate features to be activated: `RtcPriorityType`*"]
7 #[derive(Debug, Clone, Copy, PartialEq, Eq)]
8 pub enum RtcPriorityType {
9     VeryLow = "very-low",
10     Low = "low",
11     Medium = "medium",
12     High = "high",
13 }
14