web_sys/features/
gen_ConsoleLogLevel.rs

1#![allow(unused_imports)]
2#![allow(clippy::all)]
3use wasm_bindgen::prelude::*;
4#[wasm_bindgen]
5#[doc = "The `ConsoleLogLevel` enum."]
6#[doc = ""]
7#[doc = "*This API requires the following crate features to be activated: `ConsoleLogLevel`*"]
8#[derive(Debug, Clone, Copy, PartialEq, Eq)]
9pub enum ConsoleLogLevel {
10    All = "All",
11    Debug = "Debug",
12    Log = "Log",
13    Info = "Info",
14    Clear = "Clear",
15    Trace = "Trace",
16    TimeLog = "TimeLog",
17    TimeEnd = "TimeEnd",
18    Time = "Time",
19    Group = "Group",
20    GroupEnd = "GroupEnd",
21    Profile = "Profile",
22    ProfileEnd = "ProfileEnd",
23    Dir = "Dir",
24    Dirxml = "Dirxml",
25    Warn = "Warn",
26    Error = "Error",
27    Off = "Off",
28}