pub trait IAppActivationUIInfo_Impl: Sized {
    // Required methods
    fn GetMonitor(&self) -> Result<HMONITOR>;
    fn GetInvokePoint(&self) -> Result<POINT>;
    fn GetShowCommand(&self) -> Result<i32>;
    fn GetShowUI(&self) -> Result<BOOL>;
    fn GetKeyState(&self) -> Result<u32>;
}

Required Methods§

fn GetMonitor(&self) -> Result<HMONITOR>

fn GetInvokePoint(&self) -> Result<POINT>

fn GetShowCommand(&self) -> Result<i32>

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

fn GetKeyState(&self) -> Result<u32>

Object Safety§

This trait is not object safe.

Implementors§