pub trait DapAdapterClient: Debug + Send + Sync + 'static {
    // Required method
    fn event_stopped(&self);
}
Expand description

The DapAdapterClient is implemented by the user and provides functionality required by the DapAdapter.

Required Methods§

source

fn event_stopped(&self)

Indicates that the evaluation stopped at a breakpoint.

Implementors§