pub trait IDataModelScriptDebugClient_Impl: Sized {
    // Required method
    fn NotifyDebugEvent(
        &self,
        peventinfo: *const ScriptDebugEventInformation,
        pscript: Option<&IDataModelScript>,
        peventdataobject: Option<&IModelObject>,
        resumeeventkind: *mut ScriptExecutionKind,
    ) -> Result<()>;
}

Required Methods§

fn NotifyDebugEvent( &self, peventinfo: *const ScriptDebugEventInformation, pscript: Option<&IDataModelScript>, peventdataobject: Option<&IModelObject>, resumeeventkind: *mut ScriptExecutionKind, ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§