Trait ITargetNotify_Impl
pub trait ITargetNotify_Impl: IUnknownImpl {
// Required methods
fn OnCreate(
&self,
punkdestination: Ref<'_, IUnknown>,
cbcookie: u32,
) -> Result<()>;
fn OnReuse(&self, punkdestination: Ref<'_, IUnknown>) -> Result<()>;
}
Required Methods§
fn OnCreate( &self, punkdestination: Ref<'_, IUnknown>, cbcookie: u32, ) -> Result<()>
fn OnReuse(&self, punkdestination: Ref<'_, IUnknown>) -> 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.