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