Files
nushell/crates/nu-protocol/src/debugger/mod.rs
Stefan Holderbach 076a29ae19 Document public types in nu-protocol (#12906)
- **Doc-comment public `nu-protocol` modules**
- **Doccomment argument/signature/call stuff**
- **Doccomment cell path types**
- **Doccomment expression stuff**
- **Doccomment import patterns**
- **Doccomment pattern matching AST nodes**
2024-07-11 13:30:12 +02:00

7 lines
176 B
Rust

//! Module containing the trait to instrument the engine for debugging and profiling
pub mod debugger_trait;
pub mod profiler;
pub use debugger_trait::*;
pub use profiler::*;