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

Required Methods§

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

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

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

Object Safety§

This trait is not object safe.

Implementors§