pub trait IAppVisibilityEvents_Impl: IUnknownImpl {
// Required methods
fn AppVisibilityOnMonitorChanged(
&self,
hmonitor: HMONITOR,
previousmode: MONITOR_APP_VISIBILITY,
currentmode: MONITOR_APP_VISIBILITY,
) -> Result<(), Error>;
fn LauncherVisibilityChange(
&self,
currentvisiblestate: BOOL,
) -> Result<(), Error>;
}Required Methods§
fn AppVisibilityOnMonitorChanged( &self, hmonitor: HMONITOR, previousmode: MONITOR_APP_VISIBILITY, currentmode: MONITOR_APP_VISIBILITY, ) -> Result<(), Error>
fn LauncherVisibilityChange( &self, currentvisiblestate: BOOL, ) -> Result<(), Error>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".