pub trait IPrintAsyncNotifyChannel_Impl: Sized {
    // Required methods
    fn SendNotification(
        &self,
        pdata: Option<&IPrintAsyncNotifyDataObject>,
    ) -> Result<()>;
    fn CloseChannel(
        &self,
        pdata: Option<&IPrintAsyncNotifyDataObject>,
    ) -> Result<()>;
}

Required Methods§

fn SendNotification( &self, pdata: Option<&IPrintAsyncNotifyDataObject>, ) -> Result<()>

fn CloseChannel( &self, pdata: Option<&IPrintAsyncNotifyDataObject>, ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§