windows::Win32::System::Diagnostics::Debug::Extensions

Trait IDataModelScriptDebugBreakpoint_Impl

pub trait IDataModelScriptDebugBreakpoint_Impl: IUnknownImpl {
    // 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<()>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§