brush_core/trace_categories.rs
1//! Trace utilities
2
3/// Trace category for command execution.
4pub const COMMANDS: &str = "commands";
5/// Trace category for completion.
6pub const COMPLETION: &str = "completion";
7/// Trace category for word expansion.
8pub const EXPANSION: &str = "expansion";
9/// Trace category for function calls.
10pub const FUNCTIONS: &str = "functions";
11/// Trace category for user input.
12pub const INPUT: &str = "input";
13/// Trace category for job control.
14pub const JOBS: &str = "jobs";
15/// Trace category for parsing.
16pub const PARSE: &str = "parse";
17/// Trace category for shell patterns.
18pub const PATTERN: &str = "pattern";
19/// Trace category for unimplemented behavior.
20pub const UNIMPLEMENTED: &str = "unimplemented";