Trait IDebugApplicationNode_Impl
pub trait IDebugApplicationNode_Impl: IDebugDocumentProvider_Impl {
// Required methods
fn EnumChildren(&self) -> Result<IEnumDebugApplicationNodes>;
fn GetParent(&self) -> Result<IDebugApplicationNode>;
fn SetDocumentProvider(
&self,
pddp: Ref<'_, IDebugDocumentProvider>,
) -> Result<()>;
fn Close(&self) -> Result<()>;
fn Attach(&self, pdanparent: Ref<'_, IDebugApplicationNode>) -> Result<()>;
fn Detach(&self) -> Result<()>;
}
Required Methods§
fn EnumChildren(&self) -> Result<IEnumDebugApplicationNodes>
fn GetParent(&self) -> Result<IDebugApplicationNode>
fn SetDocumentProvider( &self, pddp: Ref<'_, IDebugDocumentProvider>, ) -> Result<()>
fn Close(&self) -> Result<()>
fn Attach(&self, pdanparent: Ref<'_, IDebugApplicationNode>) -> Result<()>
fn Detach(&self) -> 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.