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