pub trait IPNPXDeviceAssociation_Impl: Sized {
    // Required methods
    fn Associate(
        &self,
        pszsubcategory: &PCWSTR,
        pifunctiondiscoverynotification: Option<&IFunctionDiscoveryNotification>
    ) -> Result<()>;
    fn Unassociate(
        &self,
        pszsubcategory: &PCWSTR,
        pifunctiondiscoverynotification: Option<&IFunctionDiscoveryNotification>
    ) -> Result<()>;
    fn Delete(
        &self,
        pszsubcategory: &PCWSTR,
        pifunctiondiscoverynotification: Option<&IFunctionDiscoveryNotification>
    ) -> Result<()>;
}

Required Methods§

fn Associate( &self, pszsubcategory: &PCWSTR, pifunctiondiscoverynotification: Option<&IFunctionDiscoveryNotification> ) -> Result<()>

fn Unassociate( &self, pszsubcategory: &PCWSTR, pifunctiondiscoverynotification: Option<&IFunctionDiscoveryNotification> ) -> Result<()>

fn Delete( &self, pszsubcategory: &PCWSTR, pifunctiondiscoverynotification: Option<&IFunctionDiscoveryNotification> ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§