mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-05-13 22:31:21 +00:00
16 lines
524 B
Rust
16 lines
524 B
Rust
|
#![allow(unused_imports)]
|
||
|
use wasm_bindgen::prelude::*;
|
||
|
#[wasm_bindgen]
|
||
|
#[doc = "The `RtcSignalingState` enum."]
|
||
|
#[doc = ""]
|
||
|
#[doc = "*This API requires the following crate features to be activated: `RtcSignalingState`*"]
|
||
|
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
||
|
pub enum RtcSignalingState {
|
||
|
Stable = "stable",
|
||
|
HaveLocalOffer = "have-local-offer",
|
||
|
HaveRemoteOffer = "have-remote-offer",
|
||
|
HaveLocalPranswer = "have-local-pranswer",
|
||
|
HaveRemotePranswer = "have-remote-pranswer",
|
||
|
Closed = "closed",
|
||
|
}
|