pub trait ICompositorDesktopInterop_Impl: Sized {
    // Required methods
    fn CreateDesktopWindowTarget(
        &self,
        hwndtarget: HWND,
        istopmost: BOOL
    ) -> Result<DesktopWindowTarget>;
    fn EnsureOnThread(&self, threadid: u32) -> Result<()>;
}

Required Methods§

fn CreateDesktopWindowTarget( &self, hwndtarget: HWND, istopmost: BOOL ) -> Result<DesktopWindowTarget>

fn EnsureOnThread(&self, threadid: u32) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§