Trait IAppVisibility_Impl
pub trait IAppVisibility_Impl: IUnknownImpl {
    // Required methods
    fn GetAppVisibilityOnMonitor(
        &self,
        hmonitor: HMONITOR,
    ) -> Result<MONITOR_APP_VISIBILITY>;
    fn IsLauncherVisible(&self) -> Result<BOOL>;
    fn Advise(&self, pcallback: Ref<'_, 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: Ref<'_, IAppVisibilityEvents>) -> Result<u32>
fn Unadvise(&self, dwcookie: u32) -> Result<()>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.