pub trait IAppVisibilityEvents_Impl: Sized {
    // Required methods
    fn AppVisibilityOnMonitorChanged(
        &self,
        hmonitor: HMONITOR,
        previousmode: MONITOR_APP_VISIBILITY,
        currentmode: MONITOR_APP_VISIBILITY
    ) -> Result<()>;
    fn LauncherVisibilityChange(&self, currentvisiblestate: BOOL) -> Result<()>;
}

Required Methods§

fn AppVisibilityOnMonitorChanged( &self, hmonitor: HMONITOR, previousmode: MONITOR_APP_VISIBILITY, currentmode: MONITOR_APP_VISIBILITY ) -> Result<()>

fn LauncherVisibilityChange(&self, currentvisiblestate: BOOL) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§