blob: 4c999cad0668b68fcd5bb84a0c8ded461d6e57ac [file] [log] [blame]
#![allow(unused_imports)]
use wasm_bindgen::prelude::*;
#[wasm_bindgen]
#[doc = "The `RtcDataChannelState` enum."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `RtcDataChannelState`*"]
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum RtcDataChannelState {
Connecting = "connecting",
Open = "open",
Closing = "closing",
Closed = "closed",
}