Skip to main content

Mountain/RPC/
Debug.rs

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