Trait IDsAdminNotifyHandler_Impl
pub trait IDsAdminNotifyHandler_Impl: IUnknownImpl {
// Required methods
fn Initialize(
&self,
pextrainfo: Ref<'_, IDataObject>,
pueventflags: *mut u32,
) -> Result<()>;
fn Begin(
&self,
uevent: u32,
parg1: Ref<'_, IDataObject>,
parg2: Ref<'_, IDataObject>,
puflags: *mut u32,
pbstr: *mut BSTR,
) -> Result<()>;
fn Notify(&self, nitem: u32, uflags: u32) -> Result<()>;
fn End(&self) -> Result<()>;
}
Required Methods§
fn Initialize( &self, pextrainfo: Ref<'_, IDataObject>, pueventflags: *mut u32, ) -> Result<()>
fn Begin( &self, uevent: u32, parg1: Ref<'_, IDataObject>, parg2: Ref<'_, IDataObject>, puflags: *mut u32, pbstr: *mut BSTR, ) -> Result<()>
fn Notify(&self, nitem: u32, uflags: u32) -> Result<()>
fn End(&self) -> 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.