pub trait IPrinterExtensionEvent_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn OnDriverEvent(
        &self,
        peventargs: Option<&IPrinterExtensionEventArgs>
    ) -> Result<()>;
    fn OnPrinterQueuesEnumerated(
        &self,
        pcontextcollection: Option<&IPrinterExtensionContextCollection>
    ) -> Result<()>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§