Common/Debug/
mod.rs

1//! # Debug Service
2//!
3//! Defines the abstract contract for the Debugging service, which is
4//! responsible for launching and communicating with Debug Adapters.
5
6#![allow(non_snake_case, non_camel_case_types)]
7
8pub mod DebugService;