pub trait IWMDeviceManager2_Impl: Sized + IWMDeviceManager_Impl {
    // Required methods
    fn GetDeviceFromCanonicalName(
        &self,
        pwszcanonicalname: &PCWSTR
    ) -> Result<IWMDMDevice>;
    fn EnumDevices2(&self) -> Result<IWMDMEnumDevice>;
    fn Reinitialize(&self) -> Result<()>;
}

Required Methods§

fn GetDeviceFromCanonicalName( &self, pwszcanonicalname: &PCWSTR ) -> Result<IWMDMDevice>

fn EnumDevices2(&self) -> Result<IWMDMEnumDevice>

fn Reinitialize(&self) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§