maxcountryman_web_sys/features/
gen_PresentationConnectionState.rs1#![allow(unused_imports)]
2use wasm_bindgen::prelude::*;
3#[wasm_bindgen]
4#[doc = "The `PresentationConnectionState` enum."]
5#[doc = ""]
6#[doc = "*This API requires the following crate features to be activated: `PresentationConnectionState`*"]
7#[derive(Debug, Clone, Copy, PartialEq, Eq)]
8pub enum PresentationConnectionState {
9 Connecting = "connecting",
10 Connected = "connected",
11 Closed = "closed",
12 Terminated = "terminated",
13}