web_sys/features/
gen_RtcStatsType.rs1#![allow(unused_imports)]
2#![allow(clippy::all)]
3use wasm_bindgen::prelude::*;
4#[wasm_bindgen]
5#[doc = "The `RtcStatsType` enum."]
6#[doc = ""]
7#[doc = "*This API requires the following crate features to be activated: `RtcStatsType`*"]
8#[derive(Debug, Clone, Copy, PartialEq, Eq)]
9pub enum RtcStatsType {
10 InboundRtp = "inbound-rtp",
11 OutboundRtp = "outbound-rtp",
12 Csrc = "csrc",
13 Session = "session",
14 Track = "track",
15 Transport = "transport",
16 CandidatePair = "candidate-pair",
17 LocalCandidate = "local-candidate",
18 RemoteCandidate = "remote-candidate",
19}