pub trait IWRdsWddmIddProps1_Impl: Sized {
    // Required methods
    fn GetHardwareId(
        &self,
        pdisplaydriverhardwareid: &PCWSTR,
        count: u32,
    ) -> Result<()>;
    fn OnDriverLoad(
        &self,
        sessionid: u32,
        deviceinstance: &PCWSTR,
    ) -> Result<()>;
    fn OnDriverUnload(&self, sessionid: u32) -> Result<()>;
}

Required Methods§

fn GetHardwareId( &self, pdisplaydriverhardwareid: &PCWSTR, count: u32, ) -> Result<()>

fn OnDriverLoad(&self, sessionid: u32, deviceinstance: &PCWSTR) -> Result<()>

fn OnDriverUnload(&self, sessionid: u32) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§