DevelopmentNodeEnvironment_MicrosoftVSCodeDependency_22NodeVersion_Bundle_Clean_Debug_ElectronProfile_EsbuildCompiler_Mountain/RPC/Debug.rs
1//! Debug-Adapter-Protocol RPC service. Placeholder for the Cocoon DAP
2//! roadmap. Status: not yet wired; all exports are cfg-gated behind the
3//! `debug-protocol` feature.
4
5#[cfg(feature = "debug-protocol")]
6pub struct Struct;
7
8#[cfg(feature = "debug-protocol")]
9impl Struct {
10 pub fn new() -> Self { Struct }
11}
12
13#[cfg(feature = "debug-protocol")]
14impl Default for Struct {
15 fn default() -> Self { Self::new() }
16}