pub trait ITfContextKeyEventSink_Impl: Sized {
    // Required methods
    fn OnKeyDown(&self, wparam: WPARAM, lparam: LPARAM) -> Result<BOOL>;
    fn OnKeyUp(&self, wparam: WPARAM, lparam: LPARAM) -> Result<BOOL>;
    fn OnTestKeyDown(&self, wparam: WPARAM, lparam: LPARAM) -> Result<BOOL>;
    fn OnTestKeyUp(&self, wparam: WPARAM, lparam: LPARAM) -> Result<BOOL>;
}

Required Methods§

fn OnKeyDown(&self, wparam: WPARAM, lparam: LPARAM) -> Result<BOOL>

fn OnKeyUp(&self, wparam: WPARAM, lparam: LPARAM) -> Result<BOOL>

fn OnTestKeyDown(&self, wparam: WPARAM, lparam: LPARAM) -> Result<BOOL>

fn OnTestKeyUp(&self, wparam: WPARAM, lparam: LPARAM) -> Result<BOOL>

Object Safety§

This trait is not object safe.

Implementors§