Trait IAppVisibilityEvents_Impl
pub trait IAppVisibilityEvents_Impl: IUnknownImpl {
    // 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<()>
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.