Trait IMachineDebugManager_Impl
pub trait IMachineDebugManager_Impl: IUnknownImpl {
// Required methods
fn AddApplication(
&self,
pda: Ref<'_, IRemoteDebugApplication>,
) -> Result<u32>;
fn RemoveApplication(&self, dwappcookie: u32) -> Result<()>;
fn EnumApplications(&self) -> Result<IEnumRemoteDebugApplications>;
}
Required Methods§
fn AddApplication(&self, pda: Ref<'_, IRemoteDebugApplication>) -> Result<u32>
fn RemoveApplication(&self, dwappcookie: u32) -> Result<()>
fn EnumApplications(&self) -> Result<IEnumRemoteDebugApplications>
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.