windows::Win32::System::Diagnostics::Debug::ActiveScript

Trait IDebugApplicationNodeEvents_Impl

pub trait IDebugApplicationNodeEvents_Impl: IUnknownImpl {
    // Required methods
    fn onAddChild(
        &self,
        prddpchild: Ref<'_, IDebugApplicationNode>,
    ) -> Result<()>;
    fn onRemoveChild(
        &self,
        prddpchild: Ref<'_, IDebugApplicationNode>,
    ) -> Result<()>;
    fn onDetach(&self) -> Result<()>;
    fn onAttach(
        &self,
        prddpparent: Ref<'_, IDebugApplicationNode>,
    ) -> Result<()>;
}

Required Methods§

fn onAddChild(&self, prddpchild: Ref<'_, IDebugApplicationNode>) -> Result<()>

fn onRemoveChild( &self, prddpchild: Ref<'_, IDebugApplicationNode>, ) -> Result<()>

fn onDetach(&self) -> Result<()>

fn onAttach(&self, prddpparent: Ref<'_, IDebugApplicationNode>) -> 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§