1 #![allow(unused_imports)] 2 use wasm_bindgen::prelude::*; 3 #[wasm_bindgen] 4 #[doc = "The `RtcStatsIceCandidatePairState` enum."] 5 #[doc = ""] 6 #[doc = "*This API requires the following crate features to be activated: `RtcStatsIceCandidatePairState`*"] 7 #[derive(Debug, Clone, Copy, PartialEq, Eq)] 8 pub enum RtcStatsIceCandidatePairState { 9 Frozen = "frozen", 10 Waiting = "waiting", 11 Inprogress = "inprogress", 12 Failed = "failed", 13 Succeeded = "succeeded", 14 Cancelled = "cancelled", 15 } 16