Trait ITypeChangeEvents_Impl
pub trait ITypeChangeEvents_Impl: IUnknownImpl {
// Required methods
fn RequestTypeChange(
&self,
changekind: CHANGEKIND,
ptinfobefore: Ref<'_, ITypeInfo>,
pstrname: &PCWSTR,
) -> Result<i32>;
fn AfterTypeChange(
&self,
changekind: CHANGEKIND,
ptinfoafter: Ref<'_, ITypeInfo>,
pstrname: &PCWSTR,
) -> Result<()>;
}
Required Methods§
fn RequestTypeChange( &self, changekind: CHANGEKIND, ptinfobefore: Ref<'_, ITypeInfo>, pstrname: &PCWSTR, ) -> Result<i32>
fn AfterTypeChange( &self, changekind: CHANGEKIND, ptinfoafter: Ref<'_, ITypeInfo>, pstrname: &PCWSTR, ) -> 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.