web_sys/features/
gen_SpeechRecognitionErrorCode.rs1#![allow(unused_imports)]
2#![allow(clippy::all)]
3use wasm_bindgen::prelude::*;
4#[wasm_bindgen]
5#[doc = "The `SpeechRecognitionErrorCode` enum."]
6#[doc = ""]
7#[doc = "*This API requires the following crate features to be activated: `SpeechRecognitionErrorCode`*"]
8#[derive(Debug, Clone, Copy, PartialEq, Eq)]
9pub enum SpeechRecognitionErrorCode {
10 NoSpeech = "no-speech",
11 Aborted = "aborted",
12 AudioCapture = "audio-capture",
13 Network = "network",
14 NotAllowed = "not-allowed",
15 ServiceNotAllowed = "service-not-allowed",
16 BadGrammar = "bad-grammar",
17 LanguageNotSupported = "language-not-supported",
18}