pub trait IDataModelScriptDebugBreakpoint_Impl: Sized {
// Required methods
fn GetId(&self) -> u64;
fn IsEnabled(&self) -> bool;
fn Enable(&self);
fn Disable(&self);
fn Remove(&self);
fn GetPosition(
&self,
position: *mut ScriptDebugPosition,
positionspanend: *mut ScriptDebugPosition,
linetext: *mut BSTR,
) -> Result<()>;
}
Required Methods§
fn GetId(&self) -> u64
fn IsEnabled(&self) -> bool
fn Enable(&self)
fn Disable(&self)
fn Remove(&self)
fn GetPosition( &self, position: *mut ScriptDebugPosition, positionspanend: *mut ScriptDebugPosition, linetext: *mut BSTR, ) -> Result<()>
Object Safety§
This trait is not object safe.