pub trait IAppVisibility_Impl: Sized {
    // Required methods
    fn GetAppVisibilityOnMonitor(
        &self,
        hmonitor: HMONITOR
    ) -> Result<MONITOR_APP_VISIBILITY>;
    fn IsLauncherVisible(&self) -> Result<BOOL>;
    fn Advise(&self, pcallback: Option<&IAppVisibilityEvents>) -> Result<u32>;
    fn Unadvise(&self, dwcookie: u32) -> Result<()>;
}

Required Methods§

fn GetAppVisibilityOnMonitor( &self, hmonitor: HMONITOR ) -> Result<MONITOR_APP_VISIBILITY>

fn IsLauncherVisible(&self) -> Result<BOOL>

fn Advise(&self, pcallback: Option<&IAppVisibilityEvents>) -> Result<u32>

fn Unadvise(&self, dwcookie: u32) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§