pub trait IPrintAsyncNotifyCallback_Impl: Sized {
    // Required methods
    fn OnEventNotify(
        &self,
        pchannel: Option<&IPrintAsyncNotifyChannel>,
        pdata: Option<&IPrintAsyncNotifyDataObject>
    ) -> Result<()>;
    fn ChannelClosed(
        &self,
        pchannel: Option<&IPrintAsyncNotifyChannel>,
        pdata: Option<&IPrintAsyncNotifyDataObject>
    ) -> Result<()>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§