pub trait IMbnVendorSpecificEvents_Impl: Sized {
    // Required methods
    fn OnEventNotification(
        &self,
        vendoroperation: Option<&IMbnVendorSpecificOperation>,
        vendorspecificdata: *const SAFEARRAY
    ) -> Result<()>;
    fn OnSetVendorSpecificComplete(
        &self,
        vendoroperation: Option<&IMbnVendorSpecificOperation>,
        vendorspecificdata: *const SAFEARRAY,
        requestid: u32
    ) -> Result<()>;
}

Required Methods§

fn OnEventNotification( &self, vendoroperation: Option<&IMbnVendorSpecificOperation>, vendorspecificdata: *const SAFEARRAY ) -> Result<()>

fn OnSetVendorSpecificComplete( &self, vendoroperation: Option<&IMbnVendorSpecificOperation>, vendorspecificdata: *const SAFEARRAY, requestid: u32 ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§