windows::Win32::UI::Input::Ime

Trait IImePadApplet_Impl

pub trait IImePadApplet_Impl: IUnknownImpl {
    // Required methods
    fn Initialize(&self, lpiimepad: Ref<'_, IUnknown>) -> Result<()>;
    fn Terminate(&self) -> Result<()>;
    fn GetAppletConfig(&self, lpappletcfg: *mut IMEAPPLETCFG) -> Result<()>;
    fn CreateUI(
        &self,
        hwndparent: HWND,
        lpimeappletui: *mut IMEAPPLETUI,
    ) -> Result<()>;
    fn Notify(
        &self,
        lpimepad: Ref<'_, IUnknown>,
        notify: i32,
        wparam: WPARAM,
        lparam: LPARAM,
    ) -> Result<()>;
}

Required Methods§

fn Initialize(&self, lpiimepad: Ref<'_, IUnknown>) -> Result<()>

fn Terminate(&self) -> Result<()>

fn GetAppletConfig(&self, lpappletcfg: *mut IMEAPPLETCFG) -> Result<()>

fn CreateUI( &self, hwndparent: HWND, lpimeappletui: *mut IMEAPPLETUI, ) -> Result<()>

fn Notify( &self, lpimepad: Ref<'_, IUnknown>, notify: i32, wparam: WPARAM, lparam: LPARAM, ) -> 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.

Implementors§