Trait windows::Win32::System::Ole::ITypeChangeEvents_Impl
pub trait ITypeChangeEvents_Impl: Sized {
// Required methods
fn RequestTypeChange(
&self,
changekind: CHANGEKIND,
ptinfobefore: Option<&ITypeInfo>,
pstrname: &PCWSTR,
) -> Result<i32>;
fn AfterTypeChange(
&self,
changekind: CHANGEKIND,
ptinfoafter: Option<&ITypeInfo>,
pstrname: &PCWSTR,
) -> Result<()>;
}
Required Methods§
fn RequestTypeChange( &self, changekind: CHANGEKIND, ptinfobefore: Option<&ITypeInfo>, pstrname: &PCWSTR, ) -> Result<i32>
fn AfterTypeChange( &self, changekind: CHANGEKIND, ptinfoafter: Option<&ITypeInfo>, pstrname: &PCWSTR, ) -> Result<()>
Object Safety§
This trait is not object safe.