pub trait DebuggerGlobalScopeMethods<D: DomTypes> {
    // Required methods
    fn NotifyNewSource(&self, args: &NotifyNewSource);
    fn GetPossibleBreakpointsResult(
        &self,
        event: &D::DebuggerGetPossibleBreakpointsEvent,
        result: Vec<RecommendedBreakpointLocation>,
    );
}

Required Methods§

Implementors§