/// Determines how the web console should behave
#[derive(Debug, PartialEq, Eq, Clone, Copy)]pubenumConsoleConfig{/// Do not record to console
NoReporting,/// Record to console without colorful text
ReportWithoutConsoleColor,/// Record to console with colorful text
ReportWithConsoleColor,}implConsoleConfig{/// True if the console reporting spans
pubfnreporting_enabled(&self)->bool{!matches!(self,ConsoleConfig::NoReporting)}}