pub trait IWRdsWddmIddProps_Impl: Sized {
    // Required methods
    fn GetHardwareId(
        &self,
        pdisplaydriverhardwareid: &PCWSTR,
        count: u32,
    ) -> Result<()>;
    fn OnDriverLoad(
        &self,
        sessionid: u32,
        driverhandle: HANDLE_PTR,
    ) -> Result<()>;
    fn OnDriverUnload(&self, sessionid: u32) -> Result<()>;
    fn EnableWddmIdd(&self, enabled: BOOL) -> Result<()>;
}

Required Methods§

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

fn OnDriverLoad(&self, sessionid: u32, driverhandle: HANDLE_PTR) -> Result<()>

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

fn EnableWddmIdd(&self, enabled: BOOL) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§