Trait IPrintAsyncNotifyCallback_Impl
pub trait IPrintAsyncNotifyCallback_Impl: IUnknownImpl {
// Required methods
fn OnEventNotify(
&self,
pchannel: Ref<'_, IPrintAsyncNotifyChannel>,
pdata: Ref<'_, IPrintAsyncNotifyDataObject>,
) -> Result<()>;
fn ChannelClosed(
&self,
pchannel: Ref<'_, IPrintAsyncNotifyChannel>,
pdata: Ref<'_, IPrintAsyncNotifyDataObject>,
) -> Result<()>;
}
Required Methods§
fn OnEventNotify( &self, pchannel: Ref<'_, IPrintAsyncNotifyChannel>, pdata: Ref<'_, IPrintAsyncNotifyDataObject>, ) -> Result<()>
fn ChannelClosed( &self, pchannel: Ref<'_, IPrintAsyncNotifyChannel>, pdata: Ref<'_, IPrintAsyncNotifyDataObject>, ) -> 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.