perl-dap 0.15.0

Debug Adapter Protocol server for Perl
1
2
3
4
5
6
7
8
9
10
11
12
13
/// Stored data breakpoint record for watchpoint management
#[derive(Debug, Clone)]
pub(super) struct DataBreakpointRecord {
    // Retained for future watchpoint lifecycle correlation.
    #[allow(dead_code)]
    pub(super) data_id: String,
    // Retained to preserve the full DAP data-breakpoint request contract.
    #[allow(dead_code)]
    pub(super) access_type: Option<String>,
    // Retained to preserve conditional-watchpoint configuration.
    #[allow(dead_code)]
    pub(super) condition: Option<String>,
}